All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fpml.fpml_5.confirmation.InflationRateCalculation 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.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * A type defining the components specifiying an Inflation Rate Calculation
 * 
 * 

Java class for InflationRateCalculation complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="InflationRateCalculation">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}FloatingRateCalculation">
 *       <sequence>
 *         <element name="inflationLag" type="{http://www.fpml.org/FpML-5/confirmation}Offset"/>
 *         <element name="indexSource" type="{http://www.fpml.org/FpML-5/confirmation}RateSourcePage"/>
 *         <element name="mainPublication" type="{http://www.fpml.org/FpML-5/confirmation}MainPublication" minOccurs="0"/>
 *         <element name="interpolationMethod" type="{http://www.fpml.org/FpML-5/confirmation}InterpolationMethod"/>
 *         <element name="initialIndexLevel" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
 *         <element name="fallbackBondApplicable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InflationRateCalculation", propOrder = { "inflationLag", "indexSource", "mainPublication", "interpolationMethod", "initialIndexLevel", "fallbackBondApplicable" }) public class InflationRateCalculation extends FloatingRateCalculation { @XmlElement(required = true) protected Offset inflationLag; @XmlElement(required = true) protected RateSourcePage indexSource; protected MainPublication mainPublication; @XmlElement(required = true) protected InterpolationMethod interpolationMethod; protected BigDecimal initialIndexLevel; protected boolean fallbackBondApplicable; /** * Gets the value of the inflationLag property. * * @return * possible object is * {@link Offset } * */ public Offset getInflationLag() { return inflationLag; } /** * Sets the value of the inflationLag property. * * @param value * allowed object is * {@link Offset } * */ public void setInflationLag(Offset value) { this.inflationLag = value; } /** * Gets the value of the indexSource property. * * @return * possible object is * {@link RateSourcePage } * */ public RateSourcePage getIndexSource() { return indexSource; } /** * Sets the value of the indexSource property. * * @param value * allowed object is * {@link RateSourcePage } * */ public void setIndexSource(RateSourcePage value) { this.indexSource = value; } /** * Gets the value of the mainPublication property. * * @return * possible object is * {@link MainPublication } * */ public MainPublication getMainPublication() { return mainPublication; } /** * Sets the value of the mainPublication property. * * @param value * allowed object is * {@link MainPublication } * */ public void setMainPublication(MainPublication value) { this.mainPublication = value; } /** * Gets the value of the interpolationMethod property. * * @return * possible object is * {@link InterpolationMethod } * */ public InterpolationMethod getInterpolationMethod() { return interpolationMethod; } /** * Sets the value of the interpolationMethod property. * * @param value * allowed object is * {@link InterpolationMethod } * */ public void setInterpolationMethod(InterpolationMethod value) { this.interpolationMethod = value; } /** * Gets the value of the initialIndexLevel property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getInitialIndexLevel() { return initialIndexLevel; } /** * Sets the value of the initialIndexLevel property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setInitialIndexLevel(BigDecimal value) { this.initialIndexLevel = value; } /** * Gets the value of the fallbackBondApplicable property. * */ public boolean isFallbackBondApplicable() { return fallbackBondApplicable; } /** * Sets the value of the fallbackBondApplicable property. * */ public void setFallbackBondApplicable(boolean value) { this.fallbackBondApplicable = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy