All Downloads are FREE. Search and download functionalities are using the official Maven repository.

energyml.prodml2_0.Location Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.10.13 at 08:02:05 PM UTC 
//


package energyml.prodml2_0;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import energyml.common2_1.ExtensionNameValue;


/**
 * Location Component Schema. This is a location that is expressed in terms of 2D coordinates. In order that the location be understood, the coordinate reference system (CRS) must be known. The survey location is given by a pair of tagged values. The pairs may be: (1) latitude/longitude, (2) easting/northing, (3) westing/southing, (4) projectedX/projectedY, or (5) localX/localY. The appropriate pair must be chosen for the data.
 * 
 * 

Java class for Location complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Location">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Description" type="energyml.common2_1.String2000" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ExtensionNameValue" type="energyml.common2_1.ExtensionNameValue" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Original" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="WellCRS" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="AbstractLocation" type="energyml.prodml2_0.AbstractLocation" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Location", propOrder = { "description", "extensionNameValue", "original", "wellCRS", "abstractLocation" }) public class Location { @XmlElement(name = "Description") protected List description; @XmlElement(name = "ExtensionNameValue") protected List extensionNameValue; @XmlElement(name = "Original") protected Boolean original; @XmlElement(name = "WellCRS") protected List wellCRS; @XmlElement(name = "AbstractLocation") protected AbstractLocation abstractLocation; /** * Gets the value of the description 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 Jakarta XML Binding object. * This is why there is not a set method for the description property. * *

* For example, to add a new item, do as follows: *

     *    getDescription().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getDescription() { if (description == null) { description = new ArrayList(); } return this.description; } /** * Gets the value of the extensionNameValue 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 Jakarta XML Binding object. * This is why there is not a set method for the extensionNameValue property. * *

* For example, to add a new item, do as follows: *

     *    getExtensionNameValue().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ExtensionNameValue } * * */ public List getExtensionNameValue() { if (extensionNameValue == null) { extensionNameValue = new ArrayList(); } return this.extensionNameValue; } /** * Gets the value of the original property. * * @return * possible object is * {@link Boolean } * */ public Boolean isOriginal() { return original; } /** * Sets the value of the original property. * * @param value * allowed object is * {@link Boolean } * */ public void setOriginal(Boolean value) { this.original = value; } /** * Gets the value of the wellCRS 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 Jakarta XML Binding object. * This is why there is not a set method for the wellCRS property. * *

* For example, to add a new item, do as follows: *

     *    getWellCRS().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getWellCRS() { if (wellCRS == null) { wellCRS = new ArrayList(); } return this.wellCRS; } /** * Gets the value of the abstractLocation property. * * @return * possible object is * {@link AbstractLocation } * */ public AbstractLocation getAbstractLocation() { return abstractLocation; } /** * Sets the value of the abstractLocation property. * * @param value * allowed object is * {@link AbstractLocation } * */ public void setAbstractLocation(AbstractLocation value) { this.abstractLocation = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy