Enum Class WeatherSettlementLevelEnum

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

public enum WeatherSettlementLevelEnum extends Enum<WeatherSettlementLevelEnum>

Java class for WeatherSettlementLevelEnum.

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

 <simpleType name="WeatherSettlementLevelEnum">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="Cumulative"/>
     <enumeration value="Average"/>
     <enumeration value="Mximum"/>
     <enumeration value="Minimum"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • CUMULATIVE

      public static final WeatherSettlementLevelEnum CUMULATIVE
      The cumulative number of Weather Index Units for each day in the Calculation Period.
    • AVERAGE

      public static final WeatherSettlementLevelEnum AVERAGE
      The cumulative number of Weather Index Units for each day in the Calculation Period divided by the number of days in the Calculation Period.
    • MXIMUM

      public static final WeatherSettlementLevelEnum MXIMUM
      The maximum number of Weather Index Units for any day in the Calculation Period.
    • MINIMUM

      public static final WeatherSettlementLevelEnum MINIMUM
      The minimum number of Weather Index Units for any day in the Calculation Period.
  • Method Details

    • values

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