Package com.longbridge.quote
Enum OptionStandardAttr
- java.lang.Object
-
- java.lang.Enum<OptionStandardAttr>
-
- com.longbridge.quote.OptionStandardAttr
-
- All Implemented Interfaces:
Serializable,Comparable<OptionStandardAttr>
public enum OptionStandardAttr extends Enum<OptionStandardAttr>
Whether an option contract is a legacy contract left over from a corporate action (e.g. a stock split or a merger)
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OptionStandardAttrvalueOf(String name)Returns the enum constant of this type with the specified name.static OptionStandardAttr[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Unknown
public static final OptionStandardAttr Unknown
Unknown
-
Normal
public static final OptionStandardAttr Normal
A normal, active contract
-
Old
public static final OptionStandardAttr Old
A legacy contract produced by a corporate action
-
-
Method Detail
-
values
public static OptionStandardAttr[] 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 (OptionStandardAttr c : OptionStandardAttr.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OptionStandardAttr 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
-
-