Package com.longbridge.quote
Enum WarrantSortBy
- java.lang.Object
-
- java.lang.Enum<WarrantSortBy>
-
- com.longbridge.quote.WarrantSortBy
-
- All Implemented Interfaces:
Serializable,Comparable<WarrantSortBy>
public enum WarrantSortBy extends Enum<WarrantSortBy>
Warrant sort field
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BalancePointBreakeven pointCallPriceCall priceChangeRateChange rateChangeValueChange valueConversionRatioConversion ratioDeltaDeltaEffectiveLeverageEffective leverageExpiryDateExpiry dateImpliedVolatilityImplied volatilityItmOtmIn/out of the boundLastDoneLatest priceLeverageRatioLeverage ratioLowerStrikePriceLower bound priceOutstandingQuantityOutstanding quantityOutstandingRatioOutstanding ratioPremiumPremiumStatusStatusStrikePriceStrike priceToCallPricePrice interval from the call priceTurnoverTurnoverUpperStrikePriceUpper bound priceVolumeVolume
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WarrantSortByvalueOf(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
Latest price
-
ChangeRate
public static final WarrantSortBy ChangeRate
Change rate
-
ChangeValue
public static final WarrantSortBy ChangeValue
Change value
-
Volume
public static final WarrantSortBy Volume
Volume
-
Turnover
public static final WarrantSortBy Turnover
Turnover
-
ExpiryDate
public static final WarrantSortBy ExpiryDate
Expiry date
-
StrikePrice
public static final WarrantSortBy StrikePrice
Strike price
-
UpperStrikePrice
public static final WarrantSortBy UpperStrikePrice
Upper bound price
-
LowerStrikePrice
public static final WarrantSortBy LowerStrikePrice
Lower bound price
-
OutstandingQuantity
public static final WarrantSortBy OutstandingQuantity
Outstanding quantity
-
OutstandingRatio
public static final WarrantSortBy OutstandingRatio
Outstanding ratio
-
Premium
public static final WarrantSortBy Premium
Premium
-
ItmOtm
public static final WarrantSortBy ItmOtm
In/out of the bound
-
ImpliedVolatility
public static final WarrantSortBy ImpliedVolatility
Implied volatility
-
Delta
public static final WarrantSortBy Delta
Delta
-
CallPrice
public static final WarrantSortBy CallPrice
Call price
-
ToCallPrice
public static final WarrantSortBy ToCallPrice
Price interval from the call price
-
EffectiveLeverage
public static final WarrantSortBy EffectiveLeverage
Effective leverage
-
LeverageRatio
public static final WarrantSortBy LeverageRatio
Leverage ratio
-
ConversionRatio
public static final WarrantSortBy ConversionRatio
Conversion ratio
-
BalancePoint
public static final WarrantSortBy BalancePoint
Breakeven point
-
Status
public static final WarrantSortBy Status
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
-
-