net.finmath.smartcontract.product.xml.YieldCurveValuation Maven / Gradle / Ivy
//
// 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: 2024.12.05 at 10:53:57 AM CET
//
package net.finmath.smartcontract.product.xml;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* The values of a yield curve, including possibly inputs and outputs (dfs,
* forwards, zero rates).
*
*
* Java class for YieldCurveValuation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="YieldCurveValuation">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}PricingStructureValuation">
* <sequence>
* <element name="inputs" type="{http://www.fpml.org/FpML-5/confirmation}QuotedAssetSet" minOccurs="0"/>
* <element name="zeroCurve" type="{http://www.fpml.org/FpML-5/confirmation}ZeroRateCurve" minOccurs="0"/>
* <element name="forwardCurve" type="{http://www.fpml.org/FpML-5/confirmation}ForwardRateCurve" maxOccurs="unbounded" minOccurs="0"/>
* <element name="discountFactorCurve" type="{http://www.fpml.org/FpML-5/confirmation}TermCurve" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "YieldCurveValuation", propOrder = {
"inputs",
"zeroCurve",
"forwardCurve",
"discountFactorCurve"
})
public class YieldCurveValuation
extends PricingStructureValuation
{
protected QuotedAssetSet inputs;
protected ZeroRateCurve zeroCurve;
protected List forwardCurve;
protected TermCurve discountFactorCurve;
/**
* Gets the value of the inputs property.
*
* @return
* possible object is
* {@link QuotedAssetSet }
*
*/
public QuotedAssetSet getInputs() {
return inputs;
}
/**
* Sets the value of the inputs property.
*
* @param value
* allowed object is
* {@link QuotedAssetSet }
*
*/
public void setInputs(QuotedAssetSet value) {
this.inputs = value;
}
/**
* Gets the value of the zeroCurve property.
*
* @return
* possible object is
* {@link ZeroRateCurve }
*
*/
public ZeroRateCurve getZeroCurve() {
return zeroCurve;
}
/**
* Sets the value of the zeroCurve property.
*
* @param value
* allowed object is
* {@link ZeroRateCurve }
*
*/
public void setZeroCurve(ZeroRateCurve value) {
this.zeroCurve = value;
}
/**
* Gets the value of the forwardCurve 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 forwardCurve property.
*
*
* For example, to add a new item, do as follows:
*
* getForwardCurve().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ForwardRateCurve }
*
*
*/
public List getForwardCurve() {
if (forwardCurve == null) {
forwardCurve = new ArrayList();
}
return this.forwardCurve;
}
/**
* Gets the value of the discountFactorCurve property.
*
* @return
* possible object is
* {@link TermCurve }
*
*/
public TermCurve getDiscountFactorCurve() {
return discountFactorCurve;
}
/**
* Sets the value of the discountFactorCurve property.
*
* @param value
* allowed object is
* {@link TermCurve }
*
*/
public void setDiscountFactorCurve(TermCurve value) {
this.discountFactorCurve = value;
}
}