Class Formula
java.lang.Object
net.finmath.smartcontract.product.xml.Formula
A type describing a financial formula, with its description and
components.
Java class for Formula complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Formula"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="formulaDescription" type="{http://www.fpml.org/FpML-5/confirmation}String" minOccurs="0"/> <element name="math" type="{http://www.fpml.org/FpML-5/confirmation}Math" minOccurs="0"/> <element name="formulaComponent" type="{http://www.fpml.org/FpML-5/confirmation}FormulaComponent" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<FormulaComponent>
protected String
protected Math
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the formulaComponent property.Gets the value of the formulaDescription property.getMath()
Gets the value of the math property.void
setFormulaDescription(String value)
Sets the value of the formulaDescription property.void
Sets the value of the math property.
-
Field Details
-
formulaDescription
-
math
-
formulaComponent
-
-
Constructor Details
-
Formula
public Formula()
-
-
Method Details
-
getFormulaDescription
Gets the value of the formulaDescription property.- Returns:
- possible object is
String
-
setFormulaDescription
Sets the value of the formulaDescription property.- Parameters:
value
- allowed object isString
-
getMath
Gets the value of the math property.- Returns:
- possible object is
Math
-
setMath
Sets the value of the math property.- Parameters:
value
- allowed object isMath
-
getFormulaComponent
Gets the value of the formulaComponent property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
set
method for the formulaComponent property.For example, to add a new item, do as follows:
getFormulaComponent().add(newItem);
Objects of the following type(s) are allowed in the list
FormulaComponent
-