Class DerivativeFormula
java.lang.Object
net.finmath.smartcontract.product.xml.DerivativeFormula
A formula for computing a complex derivative from partial derivatives. Its
                 value is the sum of the terms divided by the product of the denominator terms.
             
 
 
Java class for DerivativeFormula complex type.
The following schema fragment specifies the expected content contained within this class.
 <complexType name="DerivativeFormula">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="term" type="{http://www.fpml.org/FpML-5/confirmation}FormulaTerm"/>
         <element name="denominatorTerm" type="{http://www.fpml.org/FpML-5/confirmation}DenominatorTerm"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 - 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionGets the value of the denominatorTerm property.getTerm()Gets the value of the term property.voidsetDenominatorTerm(DenominatorTerm value)Sets the value of the denominatorTerm property.voidsetTerm(FormulaTerm value)Sets the value of the term property.
- 
Field Details- 
term
- 
denominatorTerm
 
- 
- 
Constructor Details- 
DerivativeFormulapublic DerivativeFormula()
 
- 
- 
Method Details- 
getTermGets the value of the term property.- Returns:
- possible object is
     FormulaTerm
 
- 
setTermSets the value of the term property.- Parameters:
- value- allowed object is- FormulaTerm
 
- 
getDenominatorTermGets the value of the denominatorTerm property.- Returns:
- possible object is
     DenominatorTerm
 
- 
setDenominatorTermSets the value of the denominatorTerm property.- Parameters:
- value- allowed object is- DenominatorTerm
 
 
-