Enum WarrantSortBy

    • 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
      • 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
      • ItmOtm

        public static final WarrantSortBy ItmOtm
        In/out of the bound
      • ImpliedVolatility

        public static final WarrantSortBy ImpliedVolatility
        Implied volatility
      • 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
    • 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 name
        NullPointerException - if the argument is null