org.fpml.fpml_5.confirmation.SettlementPeriodFixingDates 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.05.10 at 03:58:40 PM UTC
//
package org.fpml.fpml_5.confirmation;
import java.math.BigInteger;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for SettlementPeriodFixingDates complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SettlementPeriodFixingDates">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice>
* <element name="fixingDate" type="{http://www.w3.org/2001/XMLSchema}date" maxOccurs="unbounded"/>
* <sequence>
* <element name="startDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
* <element name="endDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
* </sequence>
* <element name="numberOfFixings" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* </choice>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SettlementPeriodFixingDates", propOrder = {
"fixingDate",
"startDate",
"endDate",
"numberOfFixings"
})
public class SettlementPeriodFixingDates {
@XmlSchemaType(name = "date")
protected List fixingDate;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDate;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDate;
protected BigInteger numberOfFixings;
/**
* Gets the value of the fixingDate 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 fixingDate property.
*
*
* For example, to add a new item, do as follows:
*
* getFixingDate().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XMLGregorianCalendar }
*
*
*/
public List getFixingDate() {
if (fixingDate == null) {
fixingDate = new ArrayList();
}
return this.fixingDate;
}
/**
* 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 endDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEndDate() {
return endDate;
}
/**
* Sets the value of the endDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEndDate(XMLGregorianCalendar value) {
this.endDate = value;
}
/**
* Gets the value of the numberOfFixings property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getNumberOfFixings() {
return numberOfFixings;
}
/**
* Sets the value of the numberOfFixings property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setNumberOfFixings(BigInteger value) {
this.numberOfFixings = value;
}
}