EnvelopeType.java

  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
  3. // Implementation, v2.2.8-b130911.1802
  4. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  5. // Any modifications to this file will be lost upon recompilation of the source schema.
  6. // Generated on: 2017.12.08 at 10:18:04 AM CET
  7. //

  8. package nl.b3p.topnl.top250nl;

  9. import java.math.BigInteger;
  10. import java.util.ArrayList;
  11. import java.util.List;
  12. import javax.xml.bind.annotation.XmlAccessType;
  13. import javax.xml.bind.annotation.XmlAccessorType;
  14. import javax.xml.bind.annotation.XmlAttribute;
  15. import javax.xml.bind.annotation.XmlSchemaType;
  16. import javax.xml.bind.annotation.XmlType;

  17. /**
  18.  * Java class for EnvelopeType complex type.
  19.  *
  20.  * <p>The following schema fragment specifies the expected content contained within this class.
  21.  *
  22.  * <pre>
  23.  * &lt;complexType name="EnvelopeType">
  24.  *   &lt;complexContent>
  25.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  26.  *       &lt;choice>
  27.  *         &lt;sequence>
  28.  *           &lt;element name="lowerCorner" type="{http://www.opengis.net/gml/3.2}DirectPositionType"/>
  29.  *           &lt;element name="upperCorner" type="{http://www.opengis.net/gml/3.2}DirectPositionType"/>
  30.  *         &lt;/sequence>
  31.  *         &lt;element ref="{http://www.opengis.net/gml/3.2}pos" maxOccurs="2" minOccurs="2"/>
  32.  *         &lt;element ref="{http://www.opengis.net/gml/3.2}coordinates"/>
  33.  *       &lt;/choice>
  34.  *       &lt;attGroup ref="{http://www.opengis.net/gml/3.2}SRSReferenceGroup"/>
  35.  *     &lt;/restriction>
  36.  *   &lt;/complexContent>
  37.  * &lt;/complexType>
  38.  * </pre>
  39.  */
  40. @XmlAccessorType(XmlAccessType.FIELD)
  41. @XmlType(
  42.     name = "EnvelopeType",
  43.     propOrder = {"lowerCorner", "upperCorner", "pos", "coordinates"})
  44. public class EnvelopeType {

  45.   protected DirectPositionType lowerCorner;
  46.   protected DirectPositionType upperCorner;
  47.   protected List<DirectPositionType> pos;
  48.   protected CoordinatesType coordinates;

  49.   @XmlAttribute(name = "srsName")
  50.   @XmlSchemaType(name = "anyURI")
  51.   protected String srsName;

  52.   @XmlAttribute(name = "srsDimension")
  53.   @XmlSchemaType(name = "positiveInteger")
  54.   protected BigInteger srsDimension;

  55.   @XmlAttribute(name = "axisLabels")
  56.   protected List<String> axisLabels;

  57.   @XmlAttribute(name = "uomLabels")
  58.   protected List<String> uomLabels;

  59.   /**
  60.    * Gets the value of the lowerCorner property.
  61.    *
  62.    * @return possible object is {@link DirectPositionType }
  63.    */
  64.   public DirectPositionType getLowerCorner() {
  65.     return lowerCorner;
  66.   }

  67.   /**
  68.    * Sets the value of the lowerCorner property.
  69.    *
  70.    * @param value allowed object is {@link DirectPositionType }
  71.    */
  72.   public void setLowerCorner(DirectPositionType value) {
  73.     this.lowerCorner = value;
  74.   }

  75.   /**
  76.    * Gets the value of the upperCorner property.
  77.    *
  78.    * @return possible object is {@link DirectPositionType }
  79.    */
  80.   public DirectPositionType getUpperCorner() {
  81.     return upperCorner;
  82.   }

  83.   /**
  84.    * Sets the value of the upperCorner property.
  85.    *
  86.    * @param value allowed object is {@link DirectPositionType }
  87.    */
  88.   public void setUpperCorner(DirectPositionType value) {
  89.     this.upperCorner = value;
  90.   }

  91.   /**
  92.    * Gets the value of the pos property.
  93.    *
  94.    * <p>This accessor method returns a reference to the live list, not a snapshot. Therefore any
  95.    * modification you make to the returned list will be present inside the JAXB object. This is why
  96.    * there is not a <CODE>set</CODE> method for the pos property.
  97.    *
  98.    * <p>For example, to add a new item, do as follows:
  99.    *
  100.    * <pre>
  101.    *    getPos().add(newItem);
  102.    * </pre>
  103.    *
  104.    * <p>Objects of the following type(s) are allowed in the list {@link DirectPositionType }
  105.    */
  106.   public List<DirectPositionType> getPos() {
  107.     if (pos == null) {
  108.       pos = new ArrayList<DirectPositionType>();
  109.     }
  110.     return this.pos;
  111.   }

  112.   /**
  113.    * Gets the value of the coordinates property.
  114.    *
  115.    * @return possible object is {@link CoordinatesType }
  116.    */
  117.   public CoordinatesType getCoordinates() {
  118.     return coordinates;
  119.   }

  120.   /**
  121.    * Sets the value of the coordinates property.
  122.    *
  123.    * @param value allowed object is {@link CoordinatesType }
  124.    */
  125.   public void setCoordinates(CoordinatesType value) {
  126.     this.coordinates = value;
  127.   }

  128.   /**
  129.    * Gets the value of the srsName property.
  130.    *
  131.    * @return possible object is {@link String }
  132.    */
  133.   public String getSrsName() {
  134.     return srsName;
  135.   }

  136.   /**
  137.    * Sets the value of the srsName property.
  138.    *
  139.    * @param value allowed object is {@link String }
  140.    */
  141.   public void setSrsName(String value) {
  142.     this.srsName = value;
  143.   }

  144.   /**
  145.    * Gets the value of the srsDimension property.
  146.    *
  147.    * @return possible object is {@link BigInteger }
  148.    */
  149.   public BigInteger getSrsDimension() {
  150.     return srsDimension;
  151.   }

  152.   /**
  153.    * Sets the value of the srsDimension property.
  154.    *
  155.    * @param value allowed object is {@link BigInteger }
  156.    */
  157.   public void setSrsDimension(BigInteger value) {
  158.     this.srsDimension = value;
  159.   }

  160.   /**
  161.    * Gets the value of the axisLabels property.
  162.    *
  163.    * <p>This accessor method returns a reference to the live list, not a snapshot. Therefore any
  164.    * modification you make to the returned list will be present inside the JAXB object. This is why
  165.    * there is not a <CODE>set</CODE> method for the axisLabels property.
  166.    *
  167.    * <p>For example, to add a new item, do as follows:
  168.    *
  169.    * <pre>
  170.    *    getAxisLabels().add(newItem);
  171.    * </pre>
  172.    *
  173.    * <p>Objects of the following type(s) are allowed in the list {@link String }
  174.    */
  175.   public List<String> getAxisLabels() {
  176.     if (axisLabels == null) {
  177.       axisLabels = new ArrayList<String>();
  178.     }
  179.     return this.axisLabels;
  180.   }

  181.   /**
  182.    * Gets the value of the uomLabels property.
  183.    *
  184.    * <p>This accessor method returns a reference to the live list, not a snapshot. Therefore any
  185.    * modification you make to the returned list will be present inside the JAXB object. This is why
  186.    * there is not a <CODE>set</CODE> method for the uomLabels property.
  187.    *
  188.    * <p>For example, to add a new item, do as follows:
  189.    *
  190.    * <pre>
  191.    *    getUomLabels().add(newItem);
  192.    * </pre>
  193.    *
  194.    * <p>Objects of the following type(s) are allowed in the list {@link String }
  195.    */
  196.   public List<String> getUomLabels() {
  197.     if (uomLabels == null) {
  198.       uomLabels = new ArrayList<String>();
  199.     }
  200.     return this.uomLabels;
  201.   }
  202. }