Class AnyURI
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://niem.gov/niem/structures/2.0}SimpleObjectAttributeGroup"/>
</extension>
</simpleContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected StringThe id attribute is used to define XML IDs for NIEM objects.The linkMetadata attribute allows an element to point to metadata that affects the relationship between the context and the value of the object.The attribute metadata allows an object to point to metadata that affects itself.protected String -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetId()The id attribute is used to define XML IDs for NIEM objects.The linkMetadata attribute allows an element to point to metadata that affects the relationship between the context and the value of the object.The attribute metadata allows an object to point to metadata that affects itself.getValue()Gets the value of the value property.voidSets the value of the id property.voidSets the value of the value property.
-
Field Details
-
value
-
id
The id attribute is used to define XML IDs for NIEM objects. These IDs may be targets of reference elements, metadata attributes, and link metadata attributes. -
metadata
The attribute metadata allows an object to point to metadata that affects itself. -
linkMetadata
The linkMetadata attribute allows an element to point to metadata that affects the relationship between the context and the value of the object.
-
-
Constructor Details
-
AnyURI
public AnyURI()
-
-
Method Details
-
getValue
Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
Sets the value of the value property.- Parameters:
value- allowed object isString
-
getId
The id attribute is used to define XML IDs for NIEM objects. These IDs may be targets of reference elements, metadata attributes, and link metadata attributes.- Returns:
- possible object is
String
-
setId
Sets the value of the id property.- Parameters:
value- allowed object isString- See Also:
-
getMetadata
The attribute metadata allows an object to point to metadata that affects itself. 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 JAXB object. This is why there is not a
setmethod 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- Returns:
- The value of the metadata property.
-
getLinkMetadata
The linkMetadata attribute allows an element to point to metadata that affects the relationship between the context and the value of the object. Gets the value of the linkMetadata 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 JAXB object. This is why there is not a
setmethod for the linkMetadata property.For example, to add a new item, do as follows:
getLinkMetadata().add(newItem);
Objects of the following type(s) are allowed in the list
Object- Returns:
- The value of the linkMetadata property.
-