Package net.opengis.gml._3
Class AbstractGeometryType
- java.lang.Object
-
- net.opengis.gml._3.AbstractGMLType
-
- net.opengis.gml._3.AbstractGeometryType
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AbstractGeometricPrimitiveType
public abstract class AbstractGeometryType extends AbstractGMLType implements Serializable
All geometry elements are derived directly or indirectly from this abstract supertype. A geometry element may have an identifying attribute (gml:id), one or more names (elements identifier and name) and a description (elements description and descriptionReference) . It may be associated with a spatial reference system (attribute group gml:SRSReferenceGroup). The following rules shall be adhered to: - Every geometry type shall derive from this abstract type. - Every geometry element (i.e. an element of a geometry type) shall be directly or indirectly in the substitution group of AbstractGeometry.Java class for AbstractGeometryType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AbstractGeometryType"> <complexContent> <extension base="{http://www.opengis.net/gml/3.2}AbstractGMLType"> <attGroup ref="{http://www.opengis.net/gml/3.2}SRSReferenceGroup"/> </extension> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected BigIntegersrsDimensionprotected StringsrsName-
Fields inherited from class net.opengis.gml._3.AbstractGMLType
descriptionReference, id, identifier, names
-
-
Constructor Summary
Constructors Constructor Description AbstractGeometryType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigIntegergetSrsDimension()Gets the value of the srsDimension property.StringgetSrsName()Gets the value of the srsName property.voidsetSrsDimension(BigInteger value)Sets the value of the srsDimension property.voidsetSrsName(String value)Sets the value of the srsName property.-
Methods inherited from class net.opengis.gml._3.AbstractGMLType
getDescriptionReference, getId, getIdentifier, getNames, setDescriptionReference, setId, setIdentifier
-
-
-
-
Field Detail
-
srsName
protected String srsName
-
srsDimension
protected BigInteger srsDimension
-
-
Method Detail
-
getSrsName
public String getSrsName()
Gets the value of the srsName property.- Returns:
- possible object is
String
-
setSrsName
public void setSrsName(String value)
Sets the value of the srsName property.- Parameters:
value- allowed object isString
-
getSrsDimension
public BigInteger getSrsDimension()
Gets the value of the srsDimension property.- Returns:
- possible object is
BigInteger
-
setSrsDimension
public void setSrsDimension(BigInteger value)
Sets the value of the srsDimension property.- Parameters:
value- allowed object isBigInteger
-
-