net.finmath.smartcontract.product.xml.DerivativeCalculationProcedure 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.XmlType;
/**
* A description of how a numerical derivative is computed.
*
*
* Java class for DerivativeCalculationProcedure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DerivativeCalculationProcedure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="method" type="{http://www.fpml.org/FpML-5/confirmation}DerivativeCalculationMethod" minOccurs="0"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}DerivativeCalculationParameters.model" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DerivativeCalculationProcedure", propOrder = {
"method",
"perturbationAmount",
"averaged",
"perturbationType",
"derivativeFormula",
"replacementMarketInput"
})
public class DerivativeCalculationProcedure {
protected DerivativeCalculationMethod method;
protected BigDecimal perturbationAmount;
protected Boolean averaged;
protected PerturbationType perturbationType;
protected String derivativeFormula;
protected PricingStructureReference replacementMarketInput;
/**
* Gets the value of the method property.
*
* @return
* possible object is
* {@link DerivativeCalculationMethod }
*
*/
public DerivativeCalculationMethod getMethod() {
return method;
}
/**
* Sets the value of the method property.
*
* @param value
* allowed object is
* {@link DerivativeCalculationMethod }
*
*/
public void setMethod(DerivativeCalculationMethod value) {
this.method = value;
}
/**
* Gets the value of the perturbationAmount property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPerturbationAmount() {
return perturbationAmount;
}
/**
* Sets the value of the perturbationAmount property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setPerturbationAmount(BigDecimal value) {
this.perturbationAmount = value;
}
/**
* Gets the value of the averaged property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAveraged() {
return averaged;
}
/**
* Sets the value of the averaged property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAveraged(Boolean value) {
this.averaged = value;
}
/**
* Gets the value of the perturbationType property.
*
* @return
* possible object is
* {@link PerturbationType }
*
*/
public PerturbationType getPerturbationType() {
return perturbationType;
}
/**
* Sets the value of the perturbationType property.
*
* @param value
* allowed object is
* {@link PerturbationType }
*
*/
public void setPerturbationType(PerturbationType value) {
this.perturbationType = value;
}
/**
* Gets the value of the derivativeFormula property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDerivativeFormula() {
return derivativeFormula;
}
/**
* Sets the value of the derivativeFormula property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDerivativeFormula(String value) {
this.derivativeFormula = value;
}
/**
* Gets the value of the replacementMarketInput property.
*
* @return
* possible object is
* {@link PricingStructureReference }
*
*/
public PricingStructureReference getReplacementMarketInput() {
return replacementMarketInput;
}
/**
* Sets the value of the replacementMarketInput property.
*
* @param value
* allowed object is
* {@link PricingStructureReference }
*
*/
public void setReplacementMarketInput(PricingStructureReference value) {
this.replacementMarketInput = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy