Enum Class CalendarSourceEnum

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

public enum CalendarSourceEnum extends Enum<CalendarSourceEnum>

Java class for CalendarSourceEnum.

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

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

    • LISTED_OPTION

      public static final CalendarSourceEnum LISTED_OPTION
      Pricing Dates (based off of listed options dates) in respect of each Calculation Period, the last Commodity Business Day on which the relevant Options Contract is scheduled to trade on the Exchange.
    • FUTURE

      public static final CalendarSourceEnum FUTURE
      Pricing Dates (based off of futures dates) in respect of each Calculation Period, the last Commodity Business Day on which the relevant Futures Contract is scheduled to trade on the Exchange.
  • Method Details

    • values

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