energyml.prodml2_0.FluidSampleContainer Maven / Gradle / Ivy
Show all versions of energyml-prodml20 Show documentation
//
// 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 javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import energyml.common2_1.AbstractObject;
import energyml.common2_1.DataObjectReference;
import energyml.common2_1.PressureMeasure;
import energyml.common2_1.ThermodynamicTemperatureMeasure;
import energyml.common2_1.VolumeMeasure;
/**
* Information about the fluid container used to capture a fluid sample.
*
* Java class for FluidSampleContainer complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FluidSampleContainer">
* <complexContent>
* <extension base="{http://www.energistics.org/energyml/data/commonv2}AbstractObject">
* <sequence>
* <element name="BottleID" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Capacity" type="energyml.common2_1.VolumeMeasure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Kind" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="LastInspectionDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="Make" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Metallurgy" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Model" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Owner" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="PressureRating" type="energyml.common2_1.PressureMeasure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Remark" type="energyml.common2_1.String2000" maxOccurs="unbounded" minOccurs="0"/>
* <element name="SerialNumber" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="TemperatureRating" type="energyml.common2_1.ThermodynamicTemperatureMeasure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="TransportCertificateReference" type="energyml.common2_1.DataObjectReference" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FluidSampleContainer", propOrder = {
"bottleID",
"capacity",
"kind",
"lastInspectionDate",
"make",
"metallurgy",
"model",
"owner",
"pressureRating",
"remark",
"serialNumber",
"temperatureRating",
"transportCertificateReference"
})
public class FluidSampleContainer
extends AbstractObject
{
@XmlElement(name = "BottleID")
protected List bottleID;
@XmlElement(name = "Capacity")
protected List capacity;
@XmlElement(name = "Kind")
protected List kind;
@XmlElement(name = "LastInspectionDate")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar lastInspectionDate;
@XmlElement(name = "Make")
protected List make;
@XmlElement(name = "Metallurgy")
protected List metallurgy;
@XmlElement(name = "Model")
protected List model;
@XmlElement(name = "Owner")
protected List owner;
@XmlElement(name = "PressureRating")
protected List pressureRating;
@XmlElement(name = "Remark")
protected List remark;
@XmlElement(name = "SerialNumber")
protected List serialNumber;
@XmlElement(name = "TemperatureRating")
protected List temperatureRating;
@XmlElement(name = "TransportCertificateReference")
protected List transportCertificateReference;
/**
* Gets the value of the bottleID 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 bottleID property.
*
*
* For example, to add a new item, do as follows:
*
* getBottleID().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getBottleID() {
if (bottleID == null) {
bottleID = new ArrayList();
}
return this.bottleID;
}
/**
* Gets the value of the capacity 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 capacity property.
*
*
* For example, to add a new item, do as follows:
*
* getCapacity().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VolumeMeasure }
*
*
*/
public List getCapacity() {
if (capacity == null) {
capacity = new ArrayList();
}
return this.capacity;
}
/**
* Gets the value of the kind 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 kind property.
*
*
* For example, to add a new item, do as follows:
*
* getKind().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getKind() {
if (kind == null) {
kind = new ArrayList();
}
return this.kind;
}
/**
* Gets the value of the lastInspectionDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastInspectionDate() {
return lastInspectionDate;
}
/**
* Sets the value of the lastInspectionDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastInspectionDate(XMLGregorianCalendar value) {
this.lastInspectionDate = value;
}
/**
* Gets the value of the make 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 make property.
*
*
* For example, to add a new item, do as follows:
*
* getMake().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getMake() {
if (make == null) {
make = new ArrayList();
}
return this.make;
}
/**
* Gets the value of the metallurgy 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 metallurgy property.
*
*
* For example, to add a new item, do as follows:
*
* getMetallurgy().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getMetallurgy() {
if (metallurgy == null) {
metallurgy = new ArrayList();
}
return this.metallurgy;
}
/**
* Gets the value of the model 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 model property.
*
*
* For example, to add a new item, do as follows:
*
* getModel().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getModel() {
if (model == null) {
model = new ArrayList();
}
return this.model;
}
/**
* Gets the value of the owner 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 owner property.
*
*
* For example, to add a new item, do as follows:
*
* getOwner().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getOwner() {
if (owner == null) {
owner = new ArrayList();
}
return this.owner;
}
/**
* Gets the value of the pressureRating 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 pressureRating property.
*
*
* For example, to add a new item, do as follows:
*
* getPressureRating().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PressureMeasure }
*
*
*/
public List getPressureRating() {
if (pressureRating == null) {
pressureRating = new ArrayList();
}
return this.pressureRating;
}
/**
* Gets the value of the remark 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 remark property.
*
*
* For example, to add a new item, do as follows:
*
* getRemark().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getRemark() {
if (remark == null) {
remark = new ArrayList();
}
return this.remark;
}
/**
* Gets the value of the serialNumber 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 serialNumber property.
*
*
* For example, to add a new item, do as follows:
*
* getSerialNumber().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getSerialNumber() {
if (serialNumber == null) {
serialNumber = new ArrayList();
}
return this.serialNumber;
}
/**
* Gets the value of the temperatureRating 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 temperatureRating property.
*
*
* For example, to add a new item, do as follows:
*
* getTemperatureRating().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ThermodynamicTemperatureMeasure }
*
*
*/
public List getTemperatureRating() {
if (temperatureRating == null) {
temperatureRating = new ArrayList();
}
return this.temperatureRating;
}
/**
* Gets the value of the transportCertificateReference 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 transportCertificateReference property.
*
*
* For example, to add a new item, do as follows:
*
* getTransportCertificateReference().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DataObjectReference }
*
*
*/
public List getTransportCertificateReference() {
if (transportCertificateReference == null) {
transportCertificateReference = new ArrayList();
}
return this.transportCertificateReference;
}
}