![JAR search and dependency download from the Maven repository](/logo.png)
energyml.prodml2_0.WellTestCumulative Maven / Gradle / Ivy
//
// 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.VolumeMeasure;
/**
* The cumulative amounts of the fluids at the time of the well test. The fluids are oil, gas, and water.
*
* Java class for WellTestCumulative complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="WellTestCumulative">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CumulativeGas" type="energyml.common2_1.VolumeMeasure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="CumulativeOil" type="energyml.common2_1.VolumeMeasure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="CumulativeWater" type="energyml.common2_1.VolumeMeasure" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WellTestCumulative", propOrder = {
"cumulativeGas",
"cumulativeOil",
"cumulativeWater"
})
public class WellTestCumulative {
@XmlElement(name = "CumulativeGas")
protected List cumulativeGas;
@XmlElement(name = "CumulativeOil")
protected List cumulativeOil;
@XmlElement(name = "CumulativeWater")
protected List cumulativeWater;
/**
* Gets the value of the cumulativeGas 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 cumulativeGas property.
*
*
* For example, to add a new item, do as follows:
*
* getCumulativeGas().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VolumeMeasure }
*
*
*/
public List getCumulativeGas() {
if (cumulativeGas == null) {
cumulativeGas = new ArrayList();
}
return this.cumulativeGas;
}
/**
* Gets the value of the cumulativeOil 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 cumulativeOil property.
*
*
* For example, to add a new item, do as follows:
*
* getCumulativeOil().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VolumeMeasure }
*
*
*/
public List getCumulativeOil() {
if (cumulativeOil == null) {
cumulativeOil = new ArrayList();
}
return this.cumulativeOil;
}
/**
* Gets the value of the cumulativeWater 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 cumulativeWater property.
*
*
* For example, to add a new item, do as follows:
*
* getCumulativeWater().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VolumeMeasure }
*
*
*/
public List getCumulativeWater() {
if (cumulativeWater == null) {
cumulativeWater = new ArrayList();
}
return this.cumulativeWater;
}
}