energyml.prodml2_0.ProductionWellPeriod 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 javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import energyml.common2_1.TimeMeasure;
import energyml.common2_1.WellStatus;
/**
* Period during which the well choke did not vary.
*
* Java class for ProductionWellPeriod complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ProductionWellPeriod">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Duration" type="energyml.common2_1.TimeMeasure"/>
* <element name="Remark" type="energyml.common2_1.String2000" maxOccurs="unbounded" minOccurs="0"/>
* <element name="StartTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="WellStatus" type="energyml.common2_1.WellStatus" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ProductRate" type="energyml.prodml2_0.ProductRate" maxOccurs="unbounded" minOccurs="0"/>
* <element name="WellFlowingCondition" type="energyml.prodml2_0.WellFlowingCondition" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProductionWellPeriod", propOrder = {
"duration",
"remark",
"startTime",
"wellStatus",
"productRate",
"wellFlowingCondition"
})
public class ProductionWellPeriod {
@XmlElement(name = "Duration", required = true)
protected TimeMeasure duration;
@XmlElement(name = "Remark")
protected List remark;
@XmlElement(name = "StartTime", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startTime;
@XmlElement(name = "WellStatus")
@XmlSchemaType(name = "string")
protected List wellStatus;
@XmlElement(name = "ProductRate")
protected List productRate;
@XmlElement(name = "WellFlowingCondition")
protected WellFlowingCondition wellFlowingCondition;
/**
* Gets the value of the duration property.
*
* @return
* possible object is
* {@link TimeMeasure }
*
*/
public TimeMeasure getDuration() {
return duration;
}
/**
* Sets the value of the duration property.
*
* @param value
* allowed object is
* {@link TimeMeasure }
*
*/
public void setDuration(TimeMeasure value) {
this.duration = value;
}
/**
* 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 startTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStartTime() {
return startTime;
}
/**
* Sets the value of the startTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStartTime(XMLGregorianCalendar value) {
this.startTime = value;
}
/**
* Gets the value of the wellStatus 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 wellStatus property.
*
*
* For example, to add a new item, do as follows:
*
* getWellStatus().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link WellStatus }
*
*
*/
public List getWellStatus() {
if (wellStatus == null) {
wellStatus = new ArrayList();
}
return this.wellStatus;
}
/**
* Gets the value of the productRate 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 productRate property.
*
*
* For example, to add a new item, do as follows:
*
* getProductRate().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ProductRate }
*
*
*/
public List getProductRate() {
if (productRate == null) {
productRate = new ArrayList();
}
return this.productRate;
}
/**
* Gets the value of the wellFlowingCondition property.
*
* @return
* possible object is
* {@link WellFlowingCondition }
*
*/
public WellFlowingCondition getWellFlowingCondition() {
return wellFlowingCondition;
}
/**
* Sets the value of the wellFlowingCondition property.
*
* @param value
* allowed object is
* {@link WellFlowingCondition }
*
*/
public void setWellFlowingCondition(WellFlowingCondition value) {
this.wellFlowingCondition = value;
}
}