// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.08.10 um 09:13:50 PM CEST // package net.opengis.gml; 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.XmlType; import javax.xml.bind.annotation.XmlValue; /** * DirectPositionList instances hold the coordinates for a sequence of direct positions within the same coordinate * reference system (CRS). * * <p>Java-Klasse für DirectPositionListType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="DirectPositionListType"> * <simpleContent> * <extension base="<http://www.opengis.net/gml>doubleList"> * <attGroup ref="{http://www.opengis.net/gml}SRSReferenceGroup"/> * <attribute name="count" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DirectPositionListType", propOrder = { "value" }) public class DirectPositionListType { @XmlValue protected List<Double> value; @XmlAttribute(name = "count") @XmlSchemaType(name = "positiveInteger") protected BigInteger count; @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; /** * XML List based on XML Schema double type. An element of this type contains a space-separated list of double values Gets the value of the value 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 value property. * * <p> * For example, to add a new item, do as follows: * <pre> * getValue().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Double } * * */ public List<Double> getValue() { if (value == null) { value = new ArrayList<Double>(); } return this.value; } public boolean isSetValue() { return ((this.value!= null)&&(!this.value.isEmpty())); } public void unsetValue() { this.value = null; } /** * Ruft den Wert der count-Eigenschaft ab. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getCount() { return count; } /** * Legt den Wert der count-Eigenschaft fest. * * @param value * allowed object is * {@link BigInteger } * */ public void setCount(BigInteger value) { this.count = value; } public boolean isSetCount() { return (this.count!= null); } /** * Ruft den Wert der srsName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getSrsName() { return srsName; } /** * Legt den Wert der srsName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setSrsName(String value) { this.srsName = value; } public boolean isSetSrsName() { return (this.srsName!= null); } /** * Ruft den Wert der srsDimension-Eigenschaft ab. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSrsDimension() { return srsDimension; } /** * Legt den Wert der srsDimension-Eigenschaft fest. * * @param value * allowed object is * {@link BigInteger } * */ public void setSrsDimension(BigInteger value) { this.srsDimension = value; } public boolean isSetSrsDimension() { return (this.srsDimension!= null); } /** * 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; } public boolean isSetAxisLabels() { return ((this.axisLabels!= null)&&(!this.axisLabels.isEmpty())); } public void unsetAxisLabels() { this.axisLabels = null; } /** * 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; } public boolean isSetUomLabels() { return ((this.uomLabels!= null)&&(!this.uomLabels.isEmpty())); } public void unsetUomLabels() { this.uomLabels = null; } public void setValue(List<Double> value) { this.value = value; } public void setAxisLabels(List<String> value) { this.axisLabels = value; } public void setUomLabels(List<String> value) { this.uomLabels = value; } }