org.fpml.fpml_5.confirmation.Compounding Maven / Gradle / Ivy
The newest version!
//
// 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.07.26 at 10:31:12 AM 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Specifies the compounding method and the compounding rate.
*
* Java class for Compounding complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Compounding">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="compoundingMethod" type="{http://www.fpml.org/FpML-5/confirmation}CompoundingMethodEnum" minOccurs="0"/>
* <element name="compoundingRate" type="{http://www.fpml.org/FpML-5/confirmation}CompoundingRate"/>
* <element name="compoundingSpread" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="compoundingDates" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableRelativeOrPeriodicDates2" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Compounding", propOrder = {
"compoundingMethod",
"compoundingRate",
"compoundingSpread",
"compoundingDates"
})
public class Compounding {
@XmlSchemaType(name = "token")
protected CompoundingMethodEnum compoundingMethod;
@XmlElement(required = true)
protected CompoundingRate compoundingRate;
protected BigDecimal compoundingSpread;
protected AdjustableRelativeOrPeriodicDates2 compoundingDates;
/**
* Gets the value of the compoundingMethod property.
*
* @return
* possible object is
* {@link CompoundingMethodEnum }
*
*/
public CompoundingMethodEnum getCompoundingMethod() {
return compoundingMethod;
}
/**
* Sets the value of the compoundingMethod property.
*
* @param value
* allowed object is
* {@link CompoundingMethodEnum }
*
*/
public void setCompoundingMethod(CompoundingMethodEnum value) {
this.compoundingMethod = value;
}
/**
* Gets the value of the compoundingRate property.
*
* @return
* possible object is
* {@link CompoundingRate }
*
*/
public CompoundingRate getCompoundingRate() {
return compoundingRate;
}
/**
* Sets the value of the compoundingRate property.
*
* @param value
* allowed object is
* {@link CompoundingRate }
*
*/
public void setCompoundingRate(CompoundingRate value) {
this.compoundingRate = value;
}
/**
* Gets the value of the compoundingSpread property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getCompoundingSpread() {
return compoundingSpread;
}
/**
* Sets the value of the compoundingSpread property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setCompoundingSpread(BigDecimal value) {
this.compoundingSpread = value;
}
/**
* Gets the value of the compoundingDates property.
*
* @return
* possible object is
* {@link AdjustableRelativeOrPeriodicDates2 }
*
*/
public AdjustableRelativeOrPeriodicDates2 getCompoundingDates() {
return compoundingDates;
}
/**
* Sets the value of the compoundingDates property.
*
* @param value
* allowed object is
* {@link AdjustableRelativeOrPeriodicDates2 }
*
*/
public void setCompoundingDates(AdjustableRelativeOrPeriodicDates2 value) {
this.compoundingDates = value;
}
}