Enum Class FxTargetStyleEnum

java.lang.Object
java.lang.Enum<FxTargetStyleEnum>
net.finmath.smartcontract.product.xml.FxTargetStyleEnum
All Implemented Interfaces:
Serializable, Comparable<FxTargetStyleEnum>, Constable

public enum FxTargetStyleEnum extends Enum<FxTargetStyleEnum>

Java class for FxTargetStyleEnum.

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

 <simpleType name="FxTargetStyleEnum">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="Exact"/>
     <enumeration value="Exclusive"/>
     <enumeration value="Inclusive"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • EXACT

      public static final FxTargetStyleEnum EXACT
      The gain for the knockout period is adjusted to yield a final accumulated value equal to the target level.
    • EXCLUSIVE

      public static final FxTargetStyleEnum EXCLUSIVE
      The gain for the knockout period is adjusted to zero i.e. the target yields zero value in the final period.
    • INCLUSIVE

      public static final FxTargetStyleEnum INCLUSIVE
      The gain for the knockout period is equal to the whole benefit of the final fixing over spot i.e. the final accumulated value may exceed the target level.
  • Method Details

    • values

      public static FxTargetStyleEnum[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FxTargetStyleEnum valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
    • fromValue

      public static FxTargetStyleEnum fromValue(String v)