org.fpml.fpml_5.confirmation.MultiDimensionalPricingData 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.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* A pricing data set that contains a series of points with coordinates. It is a sparse matrix representation of a multi-dimensional matrix.
*
* Java class for MultiDimensionalPricingData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MultiDimensionalPricingData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}QuotationCharacteristics.model" minOccurs="0"/>
* <element name="point" type="{http://www.fpml.org/FpML-5/confirmation}PricingStructurePoint" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MultiDimensionalPricingData", propOrder = {
"measureType",
"quoteUnits",
"side",
"currency",
"currencyType",
"timing",
"businessCenter",
"exchangeId",
"informationSource",
"pricingModel",
"time",
"valuationDate",
"expiryTime",
"cashflowType",
"point"
})
public class MultiDimensionalPricingData {
protected AssetMeasureType measureType;
protected PriceQuoteUnits quoteUnits;
@XmlSchemaType(name = "token")
protected QuotationSideEnum side;
protected Currency currency;
protected ReportingCurrencyType currencyType;
protected QuoteTiming timing;
protected BusinessCenter businessCenter;
protected ExchangeId exchangeId;
protected List informationSource;
protected PricingModel pricingModel;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar time;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valuationDate;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar expiryTime;
protected CashflowType cashflowType;
@XmlElement(required = true)
protected List point;
/**
* Gets the value of the measureType property.
*
* @return
* possible object is
* {@link AssetMeasureType }
*
*/
public AssetMeasureType getMeasureType() {
return measureType;
}
/**
* Sets the value of the measureType property.
*
* @param value
* allowed object is
* {@link AssetMeasureType }
*
*/
public void setMeasureType(AssetMeasureType value) {
this.measureType = value;
}
/**
* Gets the value of the quoteUnits property.
*
* @return
* possible object is
* {@link PriceQuoteUnits }
*
*/
public PriceQuoteUnits getQuoteUnits() {
return quoteUnits;
}
/**
* Sets the value of the quoteUnits property.
*
* @param value
* allowed object is
* {@link PriceQuoteUnits }
*
*/
public void setQuoteUnits(PriceQuoteUnits value) {
this.quoteUnits = value;
}
/**
* Gets the value of the side property.
*
* @return
* possible object is
* {@link QuotationSideEnum }
*
*/
public QuotationSideEnum getSide() {
return side;
}
/**
* Sets the value of the side property.
*
* @param value
* allowed object is
* {@link QuotationSideEnum }
*
*/
public void setSide(QuotationSideEnum value) {
this.side = value;
}
/**
* Gets the value of the currency property.
*
* @return
* possible object is
* {@link Currency }
*
*/
public Currency getCurrency() {
return currency;
}
/**
* Sets the value of the currency property.
*
* @param value
* allowed object is
* {@link Currency }
*
*/
public void setCurrency(Currency value) {
this.currency = value;
}
/**
* Gets the value of the currencyType property.
*
* @return
* possible object is
* {@link ReportingCurrencyType }
*
*/
public ReportingCurrencyType getCurrencyType() {
return currencyType;
}
/**
* Sets the value of the currencyType property.
*
* @param value
* allowed object is
* {@link ReportingCurrencyType }
*
*/
public void setCurrencyType(ReportingCurrencyType value) {
this.currencyType = value;
}
/**
* Gets the value of the timing property.
*
* @return
* possible object is
* {@link QuoteTiming }
*
*/
public QuoteTiming getTiming() {
return timing;
}
/**
* Sets the value of the timing property.
*
* @param value
* allowed object is
* {@link QuoteTiming }
*
*/
public void setTiming(QuoteTiming value) {
this.timing = value;
}
/**
* Gets the value of the businessCenter property.
*
* @return
* possible object is
* {@link BusinessCenter }
*
*/
public BusinessCenter getBusinessCenter() {
return businessCenter;
}
/**
* Sets the value of the businessCenter property.
*
* @param value
* allowed object is
* {@link BusinessCenter }
*
*/
public void setBusinessCenter(BusinessCenter value) {
this.businessCenter = value;
}
/**
* Gets the value of the exchangeId property.
*
* @return
* possible object is
* {@link ExchangeId }
*
*/
public ExchangeId getExchangeId() {
return exchangeId;
}
/**
* Sets the value of the exchangeId property.
*
* @param value
* allowed object is
* {@link ExchangeId }
*
*/
public void setExchangeId(ExchangeId value) {
this.exchangeId = value;
}
/**
* Gets the value of the informationSource 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 informationSource property.
*
*
* For example, to add a new item, do as follows:
*
* getInformationSource().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link InformationSource }
*
*
*/
public List getInformationSource() {
if (informationSource == null) {
informationSource = new ArrayList();
}
return this.informationSource;
}
/**
* Gets the value of the pricingModel property.
*
* @return
* possible object is
* {@link PricingModel }
*
*/
public PricingModel getPricingModel() {
return pricingModel;
}
/**
* Sets the value of the pricingModel property.
*
* @param value
* allowed object is
* {@link PricingModel }
*
*/
public void setPricingModel(PricingModel value) {
this.pricingModel = value;
}
/**
* Gets the value of the time property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTime() {
return time;
}
/**
* Sets the value of the time property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTime(XMLGregorianCalendar value) {
this.time = value;
}
/**
* Gets the value of the valuationDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getValuationDate() {
return valuationDate;
}
/**
* Sets the value of the valuationDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setValuationDate(XMLGregorianCalendar value) {
this.valuationDate = value;
}
/**
* Gets the value of the expiryTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getExpiryTime() {
return expiryTime;
}
/**
* Sets the value of the expiryTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setExpiryTime(XMLGregorianCalendar value) {
this.expiryTime = value;
}
/**
* Gets the value of the cashflowType property.
*
* @return
* possible object is
* {@link CashflowType }
*
*/
public CashflowType getCashflowType() {
return cashflowType;
}
/**
* Sets the value of the cashflowType property.
*
* @param value
* allowed object is
* {@link CashflowType }
*
*/
public void setCashflowType(CashflowType value) {
this.cashflowType = value;
}
/**
* Gets the value of the point 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 point property.
*
*
* For example, to add a new item, do as follows:
*
* getPoint().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PricingStructurePoint }
*
*
*/
public List getPoint() {
if (point == null) {
point = new ArrayList();
}
return this.point;
}
}