Enum OrderType

    • Enum Constant Detail

      • Unknown

        public static final OrderType Unknown
        Unknown
      • LO

        public static final OrderType LO
        Limit order
      • ELO

        public static final OrderType ELO
        Enhanced limit order
      • MO

        public static final OrderType MO
        Market order
      • AO

        public static final OrderType AO
        At-auction order
      • ALO

        public static final OrderType ALO
        At-auction limit order
      • ODD

        public static final OrderType ODD
        Odd lots order
      • LIT

        public static final OrderType LIT
        Limit if touched
      • MIT

        public static final OrderType MIT
        Market if touched
      • TSLPAMT

        public static final OrderType TSLPAMT
        Trailing limit if touched (amount)
      • TSLPPCT

        public static final OrderType TSLPPCT
        Trailing limit if touched (percentage)
      • TSMAMT

        public static final OrderType TSMAMT
        Trailing market if touched (amount)
      • TSMPCT

        public static final OrderType TSMPCT
        Trailing market if touched (percentage)
      • SLO

        public static final OrderType SLO
        Special limit order
    • Method Detail

      • values

        public static OrderType[] 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 (OrderType c : OrderType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static OrderType 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