Package com.longport.trade
Enum OrderType
- java.lang.Object
-
- java.lang.Enum<OrderType>
-
- com.longport.trade.OrderType
-
- All Implemented Interfaces:
Serializable
,Comparable<OrderType>
public enum OrderType extends Enum<OrderType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OrderType
valueOf(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
-
LO
public static final OrderType LO
-
ELO
public static final OrderType ELO
-
MO
public static final OrderType MO
-
AO
public static final OrderType AO
-
ALO
public static final OrderType ALO
-
ODD
public static final OrderType ODD
-
LIT
public static final OrderType LIT
-
MIT
public static final OrderType MIT
-
TSLPAMT
public static final OrderType TSLPAMT
-
TSLPPCT
public static final OrderType TSLPPCT
-
TSMAMT
public static final OrderType TSMAMT
-
TSMPCT
public static final OrderType TSMPCT
-
SLO
public static final OrderType SLO
-
-
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
-
-