Enum Class FxAveragingMethodEnum

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

public enum FxAveragingMethodEnum extends Enum<FxAveragingMethodEnum>

Java class for FxAveragingMethodEnum.

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

 <simpleType name="FxAveragingMethodEnum">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="Arithmetic"/>
     <enumeration value="Harmonic"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • ARITHMETIC

      public static final FxAveragingMethodEnum ARITHMETIC
      Arithmetic method of average calculation.
    • HARMONIC

      public static final FxAveragingMethodEnum HARMONIC
      Harmonic method of average calculation.
  • Method Details

    • values

      public static FxAveragingMethodEnum[] 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 FxAveragingMethodEnum 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 FxAveragingMethodEnum fromValue(String v)