Class Formula

java.lang.Object
net.finmath.smartcontract.product.xml.Formula

public class Formula extends Object
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 Details

    • formulaDescription

      protected String formulaDescription
    • math

      protected Math math
    • formulaComponent

      protected List<FormulaComponent> formulaComponent
  • Constructor Details

    • Formula

      public Formula()
  • Method Details

    • getFormulaDescription

      public String getFormulaDescription()
      Gets the value of the formulaDescription property.
      Returns:
      possible object is String
    • setFormulaDescription

      public void setFormulaDescription(String value)
      Sets the value of the formulaDescription property.
      Parameters:
      value - allowed object is String
    • getMath

      public Math getMath()
      Gets the value of the math property.
      Returns:
      possible object is Math
    • setMath

      public void setMath(Math value)
      Sets the value of the math property.
      Parameters:
      value - allowed object is Math
    • getFormulaComponent

      public List<FormulaComponent> 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