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

energyml.prodml2_0.RelativeCoordinate Maven / Gradle / Ivy

//
// 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.LengthPerLengthMeasure;


/**
 * 

Java class for RelativeCoordinate complex type. * *

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

 * <complexType name="RelativeCoordinate">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="X" type="energyml.common2_1.LengthPerLengthMeasure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Y" type="energyml.common2_1.LengthPerLengthMeasure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Z" type="energyml.common2_1.LengthPerLengthMeasure" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RelativeCoordinate", propOrder = { "x", "y", "z" }) public class RelativeCoordinate { @XmlElement(name = "X") protected List x; @XmlElement(name = "Y") protected List y; @XmlElement(name = "Z") protected List z; /** * Gets the value of the x 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 x property. * *

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

     *    getX().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LengthPerLengthMeasure } * * */ public List getX() { if (x == null) { x = new ArrayList(); } return this.x; } /** * Gets the value of the y 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 y property. * *

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

     *    getY().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LengthPerLengthMeasure } * * */ public List getY() { if (y == null) { y = new ArrayList(); } return this.y; } /** * Gets the value of the z 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 z property. * *

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

     *    getZ().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LengthPerLengthMeasure } * * */ public List getZ() { if (z == null) { z = new ArrayList(); } return this.z; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy