energyml.prodml2_0.ConstantVolumeDepletionTest 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import energyml.common2_1.ThermodynamicTemperatureMeasure;
import energyml.common2_1.VolumeMeasure;
/**
* The CVT test.
*
* Java class for ConstantVolumeDepletionTest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ConstantVolumeDepletionTest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CumulativeGasProducedReferenceStd" type="energyml.common2_1.VolumeMeasure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Remark" type="energyml.common2_1.String2000" maxOccurs="unbounded" minOccurs="0"/>
* <element name="TestNumber" type="energyml.common2_1.NonNegativeLong"/>
* <element name="TestTemperature" type="energyml.common2_1.ThermodynamicTemperatureMeasure"/>
* <element name="CvdTestStep" type="energyml.prodml2_0.FluidCvdTestStep" maxOccurs="unbounded" minOccurs="0"/>
* <element name="LiquidDropoutReference" type="energyml.prodml2_0.FluidVolumeReference" maxOccurs="unbounded" minOccurs="0"/>
* <element name="SatuationPressure" type="energyml.prodml2_0.SaturationPressure" minOccurs="0"/>
* </sequence>
* <attribute name="uid" use="required" type="energyml.common2_1.String64" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ConstantVolumeDepletionTest", propOrder = {
"cumulativeGasProducedReferenceStd",
"remark",
"testNumber",
"testTemperature",
"cvdTestStep",
"liquidDropoutReference",
"satuationPressure"
})
public class ConstantVolumeDepletionTest {
@XmlElement(name = "CumulativeGasProducedReferenceStd")
protected List cumulativeGasProducedReferenceStd;
@XmlElement(name = "Remark")
protected List remark;
@XmlElement(name = "TestNumber")
protected long testNumber;
@XmlElement(name = "TestTemperature", required = true)
protected ThermodynamicTemperatureMeasure testTemperature;
@XmlElement(name = "CvdTestStep")
protected List cvdTestStep;
@XmlElement(name = "LiquidDropoutReference")
protected List liquidDropoutReference;
@XmlElement(name = "SatuationPressure")
protected SaturationPressure satuationPressure;
@XmlAttribute(name = "uid", required = true)
protected String uid;
/**
* Gets the value of the cumulativeGasProducedReferenceStd 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 cumulativeGasProducedReferenceStd property.
*
*
* For example, to add a new item, do as follows:
*
* getCumulativeGasProducedReferenceStd().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VolumeMeasure }
*
*
*/
public List getCumulativeGasProducedReferenceStd() {
if (cumulativeGasProducedReferenceStd == null) {
cumulativeGasProducedReferenceStd = new ArrayList();
}
return this.cumulativeGasProducedReferenceStd;
}
/**
* 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 testNumber property.
*
*/
public long getTestNumber() {
return testNumber;
}
/**
* Sets the value of the testNumber property.
*
*/
public void setTestNumber(long value) {
this.testNumber = value;
}
/**
* Gets the value of the testTemperature property.
*
* @return
* possible object is
* {@link ThermodynamicTemperatureMeasure }
*
*/
public ThermodynamicTemperatureMeasure getTestTemperature() {
return testTemperature;
}
/**
* Sets the value of the testTemperature property.
*
* @param value
* allowed object is
* {@link ThermodynamicTemperatureMeasure }
*
*/
public void setTestTemperature(ThermodynamicTemperatureMeasure value) {
this.testTemperature = value;
}
/**
* Gets the value of the cvdTestStep 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 cvdTestStep property.
*
*
* For example, to add a new item, do as follows:
*
* getCvdTestStep().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FluidCvdTestStep }
*
*
*/
public List getCvdTestStep() {
if (cvdTestStep == null) {
cvdTestStep = new ArrayList();
}
return this.cvdTestStep;
}
/**
* Gets the value of the liquidDropoutReference 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 liquidDropoutReference property.
*
*
* For example, to add a new item, do as follows:
*
* getLiquidDropoutReference().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FluidVolumeReference }
*
*
*/
public List getLiquidDropoutReference() {
if (liquidDropoutReference == null) {
liquidDropoutReference = new ArrayList();
}
return this.liquidDropoutReference;
}
/**
* Gets the value of the satuationPressure property.
*
* @return
* possible object is
* {@link SaturationPressure }
*
*/
public SaturationPressure getSatuationPressure() {
return satuationPressure;
}
/**
* Sets the value of the satuationPressure property.
*
* @param value
* allowed object is
* {@link SaturationPressure }
*
*/
public void setSatuationPressure(SaturationPressure value) {
this.satuationPressure = value;
}
/**
* Gets the value of the uid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUid() {
return uid;
}
/**
* Sets the value of the uid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUid(String value) {
this.uid = value;
}
}