// // 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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Envelope defines an extent using a pair of positions defining opposite corners in arbitrary dimensions. The first direct * position is the "lower corner" (a coordinate position consisting of all the minimal ordinates for each dimension for all points within the envelope), * the second one the "upper corner" (a coordinate position consisting of all the maximal ordinates for each dimension for all points within the * envelope). * * <p>Java-Klasse für EnvelopeType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="EnvelopeType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <sequence> * <element name="lowerCorner" type="{http://www.opengis.net/gml}DirectPositionType"/> * <element name="upperCorner" type="{http://www.opengis.net/gml}DirectPositionType"/> * </sequence> * <element ref="{http://www.opengis.net/gml}coord" maxOccurs="2" minOccurs="2"/> * <element ref="{http://www.opengis.net/gml}pos" maxOccurs="2" minOccurs="2"/> * <element ref="{http://www.opengis.net/gml}coordinates"/> * </choice> * <attGroup ref="{http://www.opengis.net/gml}SRSReferenceGroup"/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EnvelopeType", propOrder = { "lowerCorner", "upperCorner", "coord", "pos", "coordinates" }) @XmlSeeAlso({ EnvelopeWithTimePeriodType.class }) public class EnvelopeType { protected DirectPositionType lowerCorner; protected DirectPositionType upperCorner; protected List<CoordType> coord; protected List<DirectPositionType> pos; protected CoordinatesType coordinates; @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; /** * Ruft den Wert der lowerCorner-Eigenschaft ab. * * @return * possible object is * {@link DirectPositionType } * */ public DirectPositionType getLowerCorner() { return lowerCorner; } /** * Legt den Wert der lowerCorner-Eigenschaft fest. * * @param value * allowed object is * {@link DirectPositionType } * */ public void setLowerCorner(DirectPositionType value) { this.lowerCorner = value; } public boolean isSetLowerCorner() { return (this.lowerCorner!= null); } /** * Ruft den Wert der upperCorner-Eigenschaft ab. * * @return * possible object is * {@link DirectPositionType } * */ public DirectPositionType getUpperCorner() { return upperCorner; } /** * Legt den Wert der upperCorner-Eigenschaft fest. * * @param value * allowed object is * {@link DirectPositionType } * */ public void setUpperCorner(DirectPositionType value) { this.upperCorner = value; } public boolean isSetUpperCorner() { return (this.upperCorner!= null); } /** * deprecated with GML version 3.0 Gets the value of the coord 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 coord property. * * <p> * For example, to add a new item, do as follows: * <pre> * getCoord().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link CoordType } * * */ public List<CoordType> getCoord() { if (coord == null) { coord = new ArrayList<CoordType>(); } return this.coord; } public boolean isSetCoord() { return ((this.coord!= null)&&(!this.coord.isEmpty())); } public void unsetCoord() { this.coord = null; } /** * Deprecated with GML version 3.1. Use the explicit properties "lowerCorner" and "upperCorner" instead.Gets the value of the pos 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 pos property. * * <p> * For example, to add a new item, do as follows: * <pre> * getPos().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link DirectPositionType } * * */ public List<DirectPositionType> getPos() { if (pos == null) { pos = new ArrayList<DirectPositionType>(); } return this.pos; } public boolean isSetPos() { return ((this.pos!= null)&&(!this.pos.isEmpty())); } public void unsetPos() { this.pos = null; } /** * Deprecated with GML version 3.1.0. Use the explicit properties "lowerCorner" and "upperCorner" instead. * * @return * possible object is * {@link CoordinatesType } * */ public CoordinatesType getCoordinates() { return coordinates; } /** * Legt den Wert der coordinates-Eigenschaft fest. * * @param value * allowed object is * {@link CoordinatesType } * */ public void setCoordinates(CoordinatesType value) { this.coordinates = value; } public boolean isSetCoordinates() { return (this.coordinates!= 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 setCoord(List<CoordType> value) { this.coord = value; } public void setPos(List<DirectPositionType> value) { this.pos = value; } public void setAxisLabels(List<String> value) { this.axisLabels = value; } public void setUomLabels(List<String> value) { this.uomLabels = value; } }