Package com.longbridge.trade
Enum OrderType
- java.lang.Object
-
- java.lang.Enum<OrderType>
-
- com.longbridge.trade.OrderType
-
- All Implemented Interfaces:
Serializable,Comparable<OrderType>
public enum OrderType extends Enum<OrderType>
Order type
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALOAt-auction limit orderAOAt-auction orderELOEnhanced limit orderLITLimit if touchedLOLimit orderMITMarket if touchedMOMarket orderODDOdd lots orderSLOSpecial limit orderTSLPAMTTrailing limit if touched (amount)TSLPPCTTrailing limit if touched (percentage)TSMAMTTrailing market if touched (amount)TSMPCTTrailing market if touched (percentage)UnknownUnknown
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OrderTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OrderType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException- if the argument is null
-
-