Package com.longport.quote
Enum WarrantSortBy
- java.lang.Object
-
- java.lang.Enum<WarrantSortBy>
-
- com.longport.quote.WarrantSortBy
-
- All Implemented Interfaces:
Serializable
,Comparable<WarrantSortBy>
public enum WarrantSortBy extends Enum<WarrantSortBy>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WarrantSortBy
valueOf(String name)
Returns the enum constant of this type with the specified name.static WarrantSortBy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LastDone
public static final WarrantSortBy LastDone
-
ChangeRate
public static final WarrantSortBy ChangeRate
-
ChangeValue
public static final WarrantSortBy ChangeValue
-
Volume
public static final WarrantSortBy Volume
-
Turnover
public static final WarrantSortBy Turnover
-
ExpiryDate
public static final WarrantSortBy ExpiryDate
-
StrikePrice
public static final WarrantSortBy StrikePrice
-
UpperStrikePrice
public static final WarrantSortBy UpperStrikePrice
-
LowerStrikePrice
public static final WarrantSortBy LowerStrikePrice
-
OutstandingQuantity
public static final WarrantSortBy OutstandingQuantity
-
OutstandingRatio
public static final WarrantSortBy OutstandingRatio
-
Premium
public static final WarrantSortBy Premium
-
ItmOtm
public static final WarrantSortBy ItmOtm
-
ImpliedVolatility
public static final WarrantSortBy ImpliedVolatility
-
Delta
public static final WarrantSortBy Delta
-
CallPrice
public static final WarrantSortBy CallPrice
-
ToCallPrice
public static final WarrantSortBy ToCallPrice
-
EffectiveLeverage
public static final WarrantSortBy EffectiveLeverage
-
LeverageRatio
public static final WarrantSortBy LeverageRatio
-
ConversionRatio
public static final WarrantSortBy ConversionRatio
-
BalancePoint
public static final WarrantSortBy BalancePoint
-
Status
public static final WarrantSortBy Status
-
-
Method Detail
-
values
public static WarrantSortBy[] 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 (WarrantSortBy c : WarrantSortBy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WarrantSortBy 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
-
-