Class AbstractGeometryType
- java.lang.Object
-
- nl.b3p.csw.jaxb.gml.AbstractGMLType
-
- nl.b3p.csw.jaxb.gml.AbstractGeometryType
-
- Direct Known Subclasses:
AbstractGeometricAggregateType,AbstractGeometricPrimitiveType,AbstractRingType
public abstract class AbstractGeometryType extends AbstractGMLType
All geometry elements are derived directly or indirectly from this abstract supertype. A geometry element may have an identifying attribute ("gml:id"), a name (attribute "name") and a description (attribute "description"). It may be associated with a spatial reference system (attribute "srsName"). The following rules shall be adhered: - 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 _Geometry.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}AbstractGMLType"> <attGroup ref="{http://www.opengis.net/gml}SRSReferenceGroup"/> <attribute name="gid" type="{http://www.w3.org/2001/XMLSchema}string" /> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<String>axisLabelsprotected Stringgidprotected BigIntegersrsDimensionprotected StringsrsNameprotected List<String>uomLabels-
Fields inherited from class nl.b3p.csw.jaxb.gml.AbstractGMLType
description, id, metaDataProperty, name
-
-
Constructor Summary
Constructors Constructor Description AbstractGeometryType()Default no-arg constructorAbstractGeometryType(List<MetaDataProperty> metaDataProperty, Description description, List<Name> name, String id, String gid, String srsName, BigInteger srsDimension, List<String> axisLabels, List<String> uomLabels)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getAxisLabels()Gets the value of the axisLabels property.StringgetGid()Gets the value of the gid property.BigIntegergetSrsDimension()Gets the value of the srsDimension property.StringgetSrsName()Gets the value of the srsName property.List<String>getUomLabels()Gets the value of the uomLabels property.voidsetGid(String value)Sets the value of the gid 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 nl.b3p.csw.jaxb.gml.AbstractGMLType
getDescription, getId, getMetaDataProperty, getName, setDescription, setId
-
-
-
-
Constructor Detail
-
AbstractGeometryType
public AbstractGeometryType()
Default no-arg constructor
-
AbstractGeometryType
public AbstractGeometryType(List<MetaDataProperty> metaDataProperty, Description description, List<Name> name, String id, String gid, String srsName, BigInteger srsDimension, List<String> axisLabels, List<String> uomLabels)
Fully-initialising value constructor
-
-
Method Detail
-
getGid
public String getGid()
Gets the value of the gid property.- Returns:
- possible object is
String
-
setGid
public void setGid(String value)
Sets the value of the gid property.- Parameters:
value- allowed object isString
-
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
-
getAxisLabels
public List<String> getAxisLabels()
Gets the value of the axisLabels 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 axisLabels property.For example, to add a new item, do as follows:
getAxisLabels().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getUomLabels
public List<String> getUomLabels()
Gets the value of the uomLabels 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 uomLabels property.For example, to add a new item, do as follows:
getUomLabels().add(newItem);Objects of the following type(s) are allowed in the list
String
-
-