energyml.prodml2_0.MassOut 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.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import energyml.common2_1.MassMeasure;
/**
* The mass out for this slim tube.
*
* Java class for MassOut complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MassOut">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="MassEffluentStockTankOil" type="energyml.common2_1.MassMeasure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="MassProducedEffluentGas" type="energyml.common2_1.MassMeasure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="MassProducedEffluentGasFlowDown" type="energyml.common2_1.MassMeasure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="MassResidualOil" type="energyml.common2_1.MassMeasure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="TotalMassOut" type="energyml.common2_1.MassMeasure" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MassOut", propOrder = {
"massEffluentStockTankOil",
"massProducedEffluentGas",
"massProducedEffluentGasFlowDown",
"massResidualOil",
"totalMassOut"
})
public class MassOut {
@XmlElement(name = "MassEffluentStockTankOil")
protected List massEffluentStockTankOil;
@XmlElement(name = "MassProducedEffluentGas")
protected List massProducedEffluentGas;
@XmlElement(name = "MassProducedEffluentGasFlowDown")
protected List massProducedEffluentGasFlowDown;
@XmlElement(name = "MassResidualOil")
protected List massResidualOil;
@XmlElement(name = "TotalMassOut")
protected List totalMassOut;
/**
* Gets the value of the massEffluentStockTankOil 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 massEffluentStockTankOil property.
*
*
* For example, to add a new item, do as follows:
*
* getMassEffluentStockTankOil().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MassMeasure }
*
*
*/
public List getMassEffluentStockTankOil() {
if (massEffluentStockTankOil == null) {
massEffluentStockTankOil = new ArrayList();
}
return this.massEffluentStockTankOil;
}
/**
* Gets the value of the massProducedEffluentGas 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 massProducedEffluentGas property.
*
*
* For example, to add a new item, do as follows:
*
* getMassProducedEffluentGas().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MassMeasure }
*
*
*/
public List getMassProducedEffluentGas() {
if (massProducedEffluentGas == null) {
massProducedEffluentGas = new ArrayList();
}
return this.massProducedEffluentGas;
}
/**
* Gets the value of the massProducedEffluentGasFlowDown 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 massProducedEffluentGasFlowDown property.
*
*
* For example, to add a new item, do as follows:
*
* getMassProducedEffluentGasFlowDown().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MassMeasure }
*
*
*/
public List getMassProducedEffluentGasFlowDown() {
if (massProducedEffluentGasFlowDown == null) {
massProducedEffluentGasFlowDown = new ArrayList();
}
return this.massProducedEffluentGasFlowDown;
}
/**
* Gets the value of the massResidualOil 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 massResidualOil property.
*
*
* For example, to add a new item, do as follows:
*
* getMassResidualOil().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MassMeasure }
*
*
*/
public List getMassResidualOil() {
if (massResidualOil == null) {
massResidualOil = new ArrayList();
}
return this.massResidualOil;
}
/**
* Gets the value of the totalMassOut 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 totalMassOut property.
*
*
* For example, to add a new item, do as follows:
*
* getTotalMassOut().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MassMeasure }
*
*
*/
public List getTotalMassOut() {
if (totalMassOut == null) {
totalMassOut = new ArrayList();
}
return this.totalMassOut;
}
}