Class ParametricAdjustmentPoint

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

public class ParametricAdjustmentPoint extends Object
A value of the adjustment point, consisting of the x value and the corresponding y value.

Java class for ParametricAdjustmentPoint complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="ParametricAdjustmentPoint">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="parameterValue" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
         <element name="adjustmentValue" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • parameterValue

      protected BigDecimal parameterValue
    • adjustmentValue

      protected BigDecimal adjustmentValue
  • Constructor Details

    • ParametricAdjustmentPoint

      public ParametricAdjustmentPoint()
  • Method Details

    • getParameterValue

      public BigDecimal getParameterValue()
      Gets the value of the parameterValue property.
      Returns:
      possible object is BigDecimal
    • setParameterValue

      public void setParameterValue(BigDecimal value)
      Sets the value of the parameterValue property.
      Parameters:
      value - allowed object is BigDecimal
    • getAdjustmentValue

      public BigDecimal getAdjustmentValue()
      Gets the value of the adjustmentValue property.
      Returns:
      possible object is BigDecimal
    • setAdjustmentValue

      public void setAdjustmentValue(BigDecimal value)
      Sets the value of the adjustmentValue property.
      Parameters:
      value - allowed object is BigDecimal