AbstractGeometryType.java
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
// Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.12.31 at 10:32:54 AM CET
//
package nl.b3p.topnl.top50nl;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* 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.
*
* <p>Java class for AbstractGeometryType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <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>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AbstractGeometryType")
@XmlSeeAlso({AbstractGeometricAggregateType.class, AbstractGeometricPrimitiveType.class})
public abstract class AbstractGeometryType extends AbstractGMLType {
@XmlAttribute(name = "srsName")
@XmlSchemaType(name = "anyURI")
protected String srsName;
@XmlAttribute(name = "srsDimension")
@XmlSchemaType(name = "positiveInteger")
protected BigInteger srsDimension;
@XmlAttribute(name = "axisLabels")
protected List<String> axisLabels;
@XmlAttribute(name = "uomLabels")
protected List<String> uomLabels;
/**
* Gets the value of the srsName property.
*
* @return possible object is {@link String }
*/
public String getSrsName() {
return srsName;
}
/**
* Sets the value of the srsName property.
*
* @param value allowed object is {@link String }
*/
public void setSrsName(String value) {
this.srsName = value;
}
/**
* Gets the value of the srsDimension property.
*
* @return possible object is {@link BigInteger }
*/
public BigInteger getSrsDimension() {
return srsDimension;
}
/**
* Sets the value of the srsDimension property.
*
* @param value allowed object is {@link BigInteger }
*/
public void setSrsDimension(BigInteger value) {
this.srsDimension = value;
}
/**
* Gets the value of the axisLabels property.
*
* <p>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 <CODE>set</CODE> method for the axisLabels property.
*
* <p>For example, to add a new item, do as follows:
*
* <pre>
* getAxisLabels().add(newItem);
* </pre>
*
* <p>Objects of the following type(s) are allowed in the list {@link String }
*/
public List<String> getAxisLabels() {
if (axisLabels == null) {
axisLabels = new ArrayList<String>();
}
return this.axisLabels;
}
/**
* Gets the value of the uomLabels property.
*
* <p>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 <CODE>set</CODE> method for the uomLabels property.
*
* <p>For example, to add a new item, do as follows:
*
* <pre>
* getUomLabels().add(newItem);
* </pre>
*
* <p>Objects of the following type(s) are allowed in the list {@link String }
*/
public List<String> getUomLabels() {
if (uomLabels == null) {
uomLabels = new ArrayList<String>();
}
return this.uomLabels;
}
}