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

energyml.prodml2_0.FluidCharacterizationModel 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.AbstractPressureValue;
import energyml.common2_1.ThermodynamicTemperatureMeasure;


/**
 * Fluid characterization model.
 * 
 * 

Java class for FluidCharacterizationModel complex type. * *

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

 * <complexType name="FluidCharacterizationModel">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Name" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ReferencePressure" type="energyml.common2_1.AbstractPressureValue" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ReferenceStockTankPressure" type="energyml.common2_1.AbstractPressureValue" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ReferenceStockTankTemperature" type="energyml.common2_1.ThermodynamicTemperatureMeasure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ReferenceTemperature" type="energyml.common2_1.ThermodynamicTemperatureMeasure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Remark" type="energyml.common2_1.String2000" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ModelSpecification" type="energyml.prodml2_0.AbstractPvtModel" minOccurs="0"/>
 *         <element name="FluidCharacterizationTable" type="energyml.prodml2_0.FluidCharacterizationTable" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ReferenceSeparatorStage" type="energyml.prodml2_0.ReferenceSeparatorStage" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="uid" use="required" type="energyml.common2_1.String64" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FluidCharacterizationModel", propOrder = { "name", "referencePressure", "referenceStockTankPressure", "referenceStockTankTemperature", "referenceTemperature", "remark", "modelSpecification", "fluidCharacterizationTable", "referenceSeparatorStage" }) public class FluidCharacterizationModel { @XmlElement(name = "Name") protected List name; @XmlElement(name = "ReferencePressure") protected List referencePressure; @XmlElement(name = "ReferenceStockTankPressure") protected List referenceStockTankPressure; @XmlElement(name = "ReferenceStockTankTemperature") protected List referenceStockTankTemperature; @XmlElement(name = "ReferenceTemperature") protected List referenceTemperature; @XmlElement(name = "Remark") protected List remark; @XmlElement(name = "ModelSpecification") protected AbstractPvtModel modelSpecification; @XmlElement(name = "FluidCharacterizationTable") protected List fluidCharacterizationTable; @XmlElement(name = "ReferenceSeparatorStage") protected List referenceSeparatorStage; @XmlAttribute(name = "uid", required = true) protected String uid; /** * Gets the value of the name 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 name property. * *

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

     *    getName().add(newItem);
     * 
* * *

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

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

     *    getReferencePressure().add(newItem);
     * 
* * *

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

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

     *    getReferenceStockTankPressure().add(newItem);
     * 
* * *

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

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

     *    getReferenceStockTankTemperature().add(newItem);
     * 
* * *

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

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

     *    getReferenceTemperature().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ThermodynamicTemperatureMeasure } * * */ public List getReferenceTemperature() { if (referenceTemperature == null) { referenceTemperature = new ArrayList(); } return this.referenceTemperature; } /** * 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 modelSpecification property. * * @return * possible object is * {@link AbstractPvtModel } * */ public AbstractPvtModel getModelSpecification() { return modelSpecification; } /** * Sets the value of the modelSpecification property. * * @param value * allowed object is * {@link AbstractPvtModel } * */ public void setModelSpecification(AbstractPvtModel value) { this.modelSpecification = value; } /** * Gets the value of the fluidCharacterizationTable 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 fluidCharacterizationTable property. * *

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

     *    getFluidCharacterizationTable().add(newItem);
     * 
* * *

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

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

     *    getReferenceSeparatorStage().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ReferenceSeparatorStage } * * */ public List getReferenceSeparatorStage() { if (referenceSeparatorStage == null) { referenceSeparatorStage = new ArrayList(); } return this.referenceSeparatorStage; } /** * 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