Package com.longbridge.quote
Enum OptionExpiryCycleType
- java.lang.Object
-
- java.lang.Enum<OptionExpiryCycleType>
-
- com.longbridge.quote.OptionExpiryCycleType
-
- All Implemented Interfaces:
Serializable,Comparable<OptionExpiryCycleType>
public enum OptionExpiryCycleType extends Enum<OptionExpiryCycleType>
Special expiration cycle of an option contract
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OptionExpiryCycleTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OptionExpiryCycleType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Unknown
public static final OptionExpiryCycleType Unknown
Unknown
-
Monthly
public static final OptionExpiryCycleType Monthly
Standard monthly option
-
Weekly
public static final OptionExpiryCycleType Weekly
Weekly option, expires weekly
-
Quarterly
public static final OptionExpiryCycleType Quarterly
Quarterly option, expires quarterly
-
-
Method Detail
-
values
public static OptionExpiryCycleType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OptionExpiryCycleType c : OptionExpiryCycleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OptionExpiryCycleType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-