Class AnyURI

java.lang.Object
gov.niem.release.niem.proxy.xsd._4.AnyURI

public class AnyURI extends Object
A data type for a Uniform Resource Identifier Reference (URI). A value can be absolute or relative, and may have an optional fragment identifier (i.e., it may be a URI Reference).

Java class for anyURI complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="anyURI">
   <simpleContent>
     <extension base="<http://www.w3.org/2001/XMLSchema>anyURI">
       <attGroup ref="{http://release.niem.gov/niem/structures/4.0/}SimpleObjectAttributeGroup"/>
       <anyAttribute processContents='lax' namespace='urn:us:gov:ic:ntk urn:us:gov:ic:ism'/>
     </extension>
   </simpleContent>
 </complexType>
 
  • Field Details

    • value

      protected String value
    • id

      protected String id
    • ref

      protected Object ref
    • uri

      protected String uri
    • metadata

      protected List<Object> metadata
    • relationshipMetadata

      protected List<Object> relationshipMetadata
  • Constructor Details

    • AnyURI

      public AnyURI()
  • Method Details

    • getValue

      public String getValue()
      Gets the value of the value property.
      Returns:
      possible object is String
    • setValue

      public void setValue(String value)
      Sets the value of the value property.
      Parameters:
      value - allowed object is String
    • getId

      public String getId()
      Gets the value of the id property.
      Returns:
      possible object is String
    • setId

      public void setId(String value)
      Sets the value of the id property.
      Parameters:
      value - allowed object is String
    • getRef

      public Object getRef()
      Gets the value of the ref property.
      Returns:
      possible object is Object
    • setRef

      public void setRef(Object value)
      Sets the value of the ref property.
      Parameters:
      value - allowed object is Object
    • getUri

      public String getUri()
      Gets the value of the uri property.
      Returns:
      possible object is String
    • setUri

      public void setUri(String value)
      Sets the value of the uri property.
      Parameters:
      value - allowed object is String
    • getMetadata

      public List<Object> getMetadata()
      Gets the value of the metadata property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a set method for the metadata property.

      For example, to add a new item, do as follows:

          getMetadata().add(newItem);
       

      Objects of the following type(s) are allowed in the list Object

    • getRelationshipMetadata

      public List<Object> getRelationshipMetadata()
      Gets the value of the relationshipMetadata property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a set method for the relationshipMetadata property.

      For example, to add a new item, do as follows:

          getRelationshipMetadata().add(newItem);
       

      Objects of the following type(s) are allowed in the list Object

    • getOtherAttributes

      public Map<QName,String> getOtherAttributes()
      Gets a map that contains attributes that aren't bound to any typed property on this class.

      the map is keyed by the name of the attribute and the value is the string value of the attribute. the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter.

      Returns:
      always non-null
    • toString

      public String toString()
      Generates a String representation of the contents of this type. This is an extension method, produced by the 'ts' xjc plugin
      Overrides:
      toString in class Object