net.finmath.smartcontract.product.xml.Asian Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-smart-derivative-contract Show documentation
Show all versions of finmath-smart-derivative-contract Show documentation
Project to support the implementation a of smart derivative contract.
//
// 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.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* As per ISDA 2002 Definitions.
*
* Java class for Asian complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Asian">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="averagingInOut" type="{http://www.fpml.org/FpML-5/confirmation}AveragingInOutEnum"/>
* <element name="strikeFactor" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="averagingPeriodIn" type="{http://www.fpml.org/FpML-5/confirmation}AveragingPeriod" minOccurs="0"/>
* <element name="averagingPeriodOut" type="{http://www.fpml.org/FpML-5/confirmation}AveragingPeriod" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Asian", propOrder = {
"averagingInOut",
"strikeFactor",
"averagingPeriodIn",
"averagingPeriodOut"
})
public class Asian {
@XmlElement(required = true)
@XmlSchemaType(name = "token")
protected AveragingInOutEnum averagingInOut;
protected BigDecimal strikeFactor;
protected AveragingPeriod averagingPeriodIn;
protected AveragingPeriod averagingPeriodOut;
/**
* Gets the value of the averagingInOut property.
*
* @return
* possible object is
* {@link AveragingInOutEnum }
*
*/
public AveragingInOutEnum getAveragingInOut() {
return averagingInOut;
}
/**
* Sets the value of the averagingInOut property.
*
* @param value
* allowed object is
* {@link AveragingInOutEnum }
*
*/
public void setAveragingInOut(AveragingInOutEnum value) {
this.averagingInOut = value;
}
/**
* Gets the value of the strikeFactor property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getStrikeFactor() {
return strikeFactor;
}
/**
* Sets the value of the strikeFactor property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setStrikeFactor(BigDecimal value) {
this.strikeFactor = value;
}
/**
* Gets the value of the averagingPeriodIn property.
*
* @return
* possible object is
* {@link AveragingPeriod }
*
*/
public AveragingPeriod getAveragingPeriodIn() {
return averagingPeriodIn;
}
/**
* Sets the value of the averagingPeriodIn property.
*
* @param value
* allowed object is
* {@link AveragingPeriod }
*
*/
public void setAveragingPeriodIn(AveragingPeriod value) {
this.averagingPeriodIn = value;
}
/**
* Gets the value of the averagingPeriodOut property.
*
* @return
* possible object is
* {@link AveragingPeriod }
*
*/
public AveragingPeriod getAveragingPeriodOut() {
return averagingPeriodOut;
}
/**
* Sets the value of the averagingPeriodOut property.
*
* @param value
* allowed object is
* {@link AveragingPeriod }
*
*/
public void setAveragingPeriodOut(AveragingPeriod value) {
this.averagingPeriodOut = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy