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

energyml.prodml2_0.ConstantCompositionExpansionTest 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import energyml.common2_1.ThermodynamicTemperatureMeasure;


/**
 * The CCE test
 * 
 * 

Java class for ConstantCompositionExpansionTest complex type. * *

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

 * <complexType name="ConstantCompositionExpansionTest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <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="ConstantCompositionExpansionTestStep" type="energyml.prodml2_0.ConstantCompositionExpansionTestStep" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="LiquidFractionReference" type="energyml.prodml2_0.FluidVolumeReference" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="RelativeVolumeReference" type="energyml.prodml2_0.FluidVolumeReference" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="SaturationPressure" 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 = "ConstantCompositionExpansionTest", propOrder = { "remark", "testNumber", "testTemperature", "constantCompositionExpansionTestStep", "liquidFractionReference", "relativeVolumeReference", "saturationPressure" }) public class ConstantCompositionExpansionTest { @XmlElement(name = "Remark") protected List remark; @XmlElement(name = "TestNumber") protected long testNumber; @XmlElement(name = "TestTemperature", required = true) protected ThermodynamicTemperatureMeasure testTemperature; @XmlElement(name = "ConstantCompositionExpansionTestStep") protected List constantCompositionExpansionTestStep; @XmlElement(name = "LiquidFractionReference") protected List liquidFractionReference; @XmlElement(name = "RelativeVolumeReference") protected List relativeVolumeReference; @XmlElement(name = "SaturationPressure") protected SaturationPressure saturationPressure; @XmlAttribute(name = "uid", required = true) protected String uid; /** * 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 constantCompositionExpansionTestStep 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 constantCompositionExpansionTestStep property. * *

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

     *    getConstantCompositionExpansionTestStep().add(newItem);
     * 
* * *

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

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

     *    getLiquidFractionReference().add(newItem);
     * 
* * *

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

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

     *    getRelativeVolumeReference().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FluidVolumeReference } * * */ public List getRelativeVolumeReference() { if (relativeVolumeReference == null) { relativeVolumeReference = new ArrayList(); } return this.relativeVolumeReference; } /** * Gets the value of the saturationPressure property. * * @return * possible object is * {@link SaturationPressure } * */ public SaturationPressure getSaturationPressure() { return saturationPressure; } /** * Sets the value of the saturationPressure property. * * @param value * allowed object is * {@link SaturationPressure } * */ public void setSaturationPressure(SaturationPressure value) { this.saturationPressure = 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; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy