Class OptionNumericStrike

java.lang.Object
net.finmath.smartcontract.product.xml.OptionNumericStrike
Direct Known Subclasses:
OptionStrike

public class OptionNumericStrike extends Object
A type for defining the strike price for an option as a numeric value without currency.

Java class for OptionNumericStrike complex type.

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

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

    • strikePrice

      protected BigDecimal strikePrice
    • strikePercentage

      protected BigDecimal strikePercentage
  • Constructor Details

    • OptionNumericStrike

      public OptionNumericStrike()
  • Method Details

    • getStrikePrice

      public BigDecimal getStrikePrice()
      Gets the value of the strikePrice property.
      Returns:
      possible object is BigDecimal
    • setStrikePrice

      public void setStrikePrice(BigDecimal value)
      Sets the value of the strikePrice property.
      Parameters:
      value - allowed object is BigDecimal
    • getStrikePercentage

      public BigDecimal getStrikePercentage()
      Gets the value of the strikePercentage property.
      Returns:
      possible object is BigDecimal
    • setStrikePercentage

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