Package net.opengis.gml._3
Class AbstractGMLType
- java.lang.Object
-
- net.opengis.gml._3.AbstractGMLType
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AbstractGeometryType
public abstract class AbstractGMLType extends Object implements Serializable
Java class for AbstractGMLType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AbstractGMLType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <group ref="{http://www.opengis.net/gml/3.2}StandardObjectProperties"/> </sequence> <attribute ref="{http://www.opengis.net/gml/3.2}id use="required""/> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected ReferenceTypedescriptionReferenceprotected Stringidprotected Identifieridentifierprotected List<CodeType>names
-
Constructor Summary
Constructors Constructor Description AbstractGMLType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ReferenceTypegetDescriptionReference()Gets the value of the descriptionReference property.StringgetId()Gets the value of the id property.IdentifiergetIdentifier()Gets the value of the identifier property.List<CodeType>getNames()Gets the value of the names property.voidsetDescriptionReference(ReferenceType value)Sets the value of the descriptionReference property.voidsetId(String value)Sets the value of the id property.voidsetIdentifier(Identifier value)Sets the value of the identifier property.
-
-
-
Field Detail
-
descriptionReference
protected ReferenceType descriptionReference
-
identifier
protected Identifier identifier
-
id
protected String id
-
-
Method Detail
-
getDescriptionReference
public ReferenceType getDescriptionReference()
Gets the value of the descriptionReference property.- Returns:
- possible object is
ReferenceType
-
setDescriptionReference
public void setDescriptionReference(ReferenceType value)
Sets the value of the descriptionReference property.- Parameters:
value- allowed object isReferenceType
-
getIdentifier
public Identifier getIdentifier()
Gets the value of the identifier property.- Returns:
- possible object is
Identifier
-
setIdentifier
public void setIdentifier(Identifier value)
Sets the value of the identifier property.- Parameters:
value- allowed object isIdentifier
-
getNames
public List<CodeType> getNames()
Gets the value of the names 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
setmethod for the names property.For example, to add a new item, do as follows:
getNames().add(newItem);Objects of the following type(s) are allowed in the list
CodeType
-
-