energyml.prodml2_0.ReportingEntityVolumes 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.DataObjectReference;
import energyml.common2_1.TimeMeasure;
/**
* Contains all the volumes for a single reporting entity. It contains a reference back to the reporting entity using its UUID for reference.
*
* Java class for ReportingEntityVolumes complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ReportingEntityVolumes">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Duration" type="energyml.common2_1.TimeMeasure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ReportingEntityReference" type="energyml.common2_1.DataObjectReference"/>
* <element name="StartDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="Disposition" type="energyml.prodml2_0.AbstractDisposition" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ClosingInventory" type="energyml.prodml2_0.AbstractProductQuantity" maxOccurs="unbounded" minOccurs="0"/>
* <element name="OpeningInventory" type="energyml.prodml2_0.AbstractProductQuantity" maxOccurs="unbounded" minOccurs="0"/>
* <element name="DeferredProductionEvent" type="energyml.prodml2_0.DeferredProductionEvent" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Injection" type="energyml.prodml2_0.Injection" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Production" type="energyml.prodml2_0.Production" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReportingEntityVolumes", propOrder = {
"duration",
"reportingEntityReference",
"startDate",
"disposition",
"closingInventory",
"openingInventory",
"deferredProductionEvent",
"injection",
"production"
})
public class ReportingEntityVolumes {
@XmlElement(name = "Duration")
protected List duration;
@XmlElement(name = "ReportingEntityReference", required = true)
protected DataObjectReference reportingEntityReference;
@XmlElement(name = "StartDate")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startDate;
@XmlElement(name = "Disposition")
protected List disposition;
@XmlElement(name = "ClosingInventory")
protected List closingInventory;
@XmlElement(name = "OpeningInventory")
protected List openingInventory;
@XmlElement(name = "DeferredProductionEvent")
protected List deferredProductionEvent;
@XmlElement(name = "Injection")
protected List injection;
@XmlElement(name = "Production")
protected List production;
/**
* Gets the value of the duration 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 duration property.
*
*
* For example, to add a new item, do as follows:
*
* getDuration().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TimeMeasure }
*
*
*/
public List getDuration() {
if (duration == null) {
duration = new ArrayList();
}
return this.duration;
}
/**
* Gets the value of the reportingEntityReference property.
*
* @return
* possible object is
* {@link DataObjectReference }
*
*/
public DataObjectReference getReportingEntityReference() {
return reportingEntityReference;
}
/**
* Sets the value of the reportingEntityReference property.
*
* @param value
* allowed object is
* {@link DataObjectReference }
*
*/
public void setReportingEntityReference(DataObjectReference value) {
this.reportingEntityReference = value;
}
/**
* Gets the value of the startDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStartDate() {
return startDate;
}
/**
* Sets the value of the startDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStartDate(XMLGregorianCalendar value) {
this.startDate = value;
}
/**
* Gets the value of the disposition 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 disposition property.
*
*
* For example, to add a new item, do as follows:
*
* getDisposition().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AbstractDisposition }
*
*
*/
public List getDisposition() {
if (disposition == null) {
disposition = new ArrayList();
}
return this.disposition;
}
/**
* Gets the value of the closingInventory 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 closingInventory property.
*
*
* For example, to add a new item, do as follows:
*
* getClosingInventory().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AbstractProductQuantity }
*
*
*/
public List getClosingInventory() {
if (closingInventory == null) {
closingInventory = new ArrayList();
}
return this.closingInventory;
}
/**
* Gets the value of the openingInventory 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 openingInventory property.
*
*
* For example, to add a new item, do as follows:
*
* getOpeningInventory().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AbstractProductQuantity }
*
*
*/
public List getOpeningInventory() {
if (openingInventory == null) {
openingInventory = new ArrayList();
}
return this.openingInventory;
}
/**
* Gets the value of the deferredProductionEvent 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 deferredProductionEvent property.
*
*
* For example, to add a new item, do as follows:
*
* getDeferredProductionEvent().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DeferredProductionEvent }
*
*
*/
public List getDeferredProductionEvent() {
if (deferredProductionEvent == null) {
deferredProductionEvent = new ArrayList();
}
return this.deferredProductionEvent;
}
/**
* Gets the value of the injection 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 injection property.
*
*
* For example, to add a new item, do as follows:
*
* getInjection().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Injection }
*
*
*/
public List getInjection() {
if (injection == null) {
injection = new ArrayList();
}
return this.injection;
}
/**
* Gets the value of the production 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 production property.
*
*
* For example, to add a new item, do as follows:
*
* getProduction().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Production }
*
*
*/
public List getProduction() {
if (production == null) {
production = new ArrayList();
}
return this.production;
}
}