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

net.finmath.smartcontract.product.xml.InterestCalculation 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlID;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * Specifies the calculation method of the interest rate leg of the return
 *                 swap. Includes the floating or fixed rate calculation definitions, along with the determination of the
 *                 day count fraction.
 *             
 * 
 * 

Java class for InterestCalculation complex type. * *

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

 * <complexType name="InterestCalculation">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}InterestAccrualsMethod">
 *       <sequence>
 *         <element name="dayCountFraction" type="{http://www.fpml.org/FpML-5/confirmation}DayCountFraction"/>
 *         <element name="compounding" type="{http://www.fpml.org/FpML-5/confirmation}Compounding" minOccurs="0"/>
 *         <sequence minOccurs="0">
 *           <element name="interpolationMethod" type="{http://www.fpml.org/FpML-5/confirmation}InterpolationMethod"/>
 *           <element name="interpolationPeriod" type="{http://www.fpml.org/FpML-5/confirmation}InterpolationPeriodEnum" minOccurs="0"/>
 *         </sequence>
 *       </sequence>
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InterestCalculation", propOrder = { "dayCountFraction", "compounding", "interpolationMethod", "interpolationPeriod" }) public class InterestCalculation extends InterestAccrualsMethod { @XmlElement(required = true) protected DayCountFraction dayCountFraction; protected Compounding compounding; protected InterpolationMethod interpolationMethod; @XmlSchemaType(name = "token") protected InterpolationPeriodEnum interpolationPeriod; @XmlAttribute(name = "id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; /** * Gets the value of the dayCountFraction property. * * @return * possible object is * {@link DayCountFraction } * */ public DayCountFraction getDayCountFraction() { return dayCountFraction; } /** * Sets the value of the dayCountFraction property. * * @param value * allowed object is * {@link DayCountFraction } * */ public void setDayCountFraction(DayCountFraction value) { this.dayCountFraction = value; } /** * Gets the value of the compounding property. * * @return * possible object is * {@link Compounding } * */ public Compounding getCompounding() { return compounding; } /** * Sets the value of the compounding property. * * @param value * allowed object is * {@link Compounding } * */ public void setCompounding(Compounding value) { this.compounding = 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 interpolationPeriod property. * * @return * possible object is * {@link InterpolationPeriodEnum } * */ public InterpolationPeriodEnum getInterpolationPeriod() { return interpolationPeriod; } /** * Sets the value of the interpolationPeriod property. * * @param value * allowed object is * {@link InterpolationPeriodEnum } * */ public void setInterpolationPeriod(InterpolationPeriodEnum value) { this.interpolationPeriod = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy