Package com.longport.quote
Enum FilterWarrantExpiryDate
- java.lang.Object
-
- java.lang.Enum<FilterWarrantExpiryDate>
-
- com.longport.quote.FilterWarrantExpiryDate
-
- All Implemented Interfaces:
Serializable
,Comparable<FilterWarrantExpiryDate>
public enum FilterWarrantExpiryDate extends Enum<FilterWarrantExpiryDate>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Between_3_6
Between_6_12
GT_12
LT_3
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FilterWarrantExpiryDate
valueOf(String name)
Returns the enum constant of this type with the specified name.static FilterWarrantExpiryDate[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LT_3
public static final FilterWarrantExpiryDate LT_3
-
Between_3_6
public static final FilterWarrantExpiryDate Between_3_6
-
Between_6_12
public static final FilterWarrantExpiryDate Between_6_12
-
GT_12
public static final FilterWarrantExpiryDate GT_12
-
-
Method Detail
-
values
public static FilterWarrantExpiryDate[] 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 (FilterWarrantExpiryDate c : FilterWarrantExpiryDate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilterWarrantExpiryDate 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
-
-