
org.fpml.fpml_5.confirmation.GasPhysicalQuantity Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.04.04 at 04:56:21 PM UTC
//
package org.fpml.fpml_5.confirmation;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* The quantity of gas to be delivered.
*
* Java class for GasPhysicalQuantity complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GasPhysicalQuantity">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}CommodityPhysicalQuantityBase">
* <choice>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}CommodityFixedPhysicalQuantity.model"/>
* <sequence>
* <element name="minPhysicalQuantity" type="{http://www.fpml.org/FpML-5/confirmation}CommodityNotionalQuantity" maxOccurs="unbounded"/>
* <element name="maxPhysicalQuantity" type="{http://www.fpml.org/FpML-5/confirmation}CommodityNotionalQuantity" maxOccurs="unbounded"/>
* <element name="electingParty" type="{http://www.fpml.org/FpML-5/confirmation}PartyReference" minOccurs="0"/>
* </sequence>
* </choice>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GasPhysicalQuantity", propOrder = {
"physicalQuantity",
"physicalQuantitySchedule",
"totalPhysicalQuantity",
"minPhysicalQuantity",
"maxPhysicalQuantity",
"electingParty"
})
public class GasPhysicalQuantity
extends CommodityPhysicalQuantityBase
{
protected CommodityNotionalQuantity physicalQuantity;
protected CommodityPhysicalQuantitySchedule physicalQuantitySchedule;
protected UnitQuantity totalPhysicalQuantity;
protected List minPhysicalQuantity;
protected List maxPhysicalQuantity;
protected PartyReference electingParty;
/**
* Gets the value of the physicalQuantity property.
*
* @return
* possible object is
* {@link CommodityNotionalQuantity }
*
*/
public CommodityNotionalQuantity getPhysicalQuantity() {
return physicalQuantity;
}
/**
* Sets the value of the physicalQuantity property.
*
* @param value
* allowed object is
* {@link CommodityNotionalQuantity }
*
*/
public void setPhysicalQuantity(CommodityNotionalQuantity value) {
this.physicalQuantity = value;
}
/**
* Gets the value of the physicalQuantitySchedule property.
*
* @return
* possible object is
* {@link CommodityPhysicalQuantitySchedule }
*
*/
public CommodityPhysicalQuantitySchedule getPhysicalQuantitySchedule() {
return physicalQuantitySchedule;
}
/**
* Sets the value of the physicalQuantitySchedule property.
*
* @param value
* allowed object is
* {@link CommodityPhysicalQuantitySchedule }
*
*/
public void setPhysicalQuantitySchedule(CommodityPhysicalQuantitySchedule value) {
this.physicalQuantitySchedule = value;
}
/**
* Gets the value of the totalPhysicalQuantity property.
*
* @return
* possible object is
* {@link UnitQuantity }
*
*/
public UnitQuantity getTotalPhysicalQuantity() {
return totalPhysicalQuantity;
}
/**
* Sets the value of the totalPhysicalQuantity property.
*
* @param value
* allowed object is
* {@link UnitQuantity }
*
*/
public void setTotalPhysicalQuantity(UnitQuantity value) {
this.totalPhysicalQuantity = value;
}
/**
* Gets the value of the minPhysicalQuantity 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 JAXB object.
* This is why there is not a set
method for the minPhysicalQuantity property.
*
*
* For example, to add a new item, do as follows:
*
* getMinPhysicalQuantity().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CommodityNotionalQuantity }
*
*
*/
public List getMinPhysicalQuantity() {
if (minPhysicalQuantity == null) {
minPhysicalQuantity = new ArrayList();
}
return this.minPhysicalQuantity;
}
/**
* Gets the value of the maxPhysicalQuantity 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 JAXB object.
* This is why there is not a set
method for the maxPhysicalQuantity property.
*
*
* For example, to add a new item, do as follows:
*
* getMaxPhysicalQuantity().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CommodityNotionalQuantity }
*
*
*/
public List getMaxPhysicalQuantity() {
if (maxPhysicalQuantity == null) {
maxPhysicalQuantity = new ArrayList();
}
return this.maxPhysicalQuantity;
}
/**
* Gets the value of the electingParty property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getElectingParty() {
return electingParty;
}
/**
* Sets the value of the electingParty property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setElectingParty(PartyReference value) {
this.electingParty = value;
}
}