| Enum Constant and Description |
|---|
_INVALID |
LIMIT |
MARKET |
MARKETLIMIT |
PREVIOUSLY_QUOTED |
PREVIOUSLY_QUOTED_AMT_TIER |
STOP |
STOPLIMIT |
VWAP_SWEEP |
| Modifier and Type | Field and Description |
|---|---|
byte |
val |
| Modifier and Type | Method and Description |
|---|---|
byte |
get() |
static OrderType |
get(byte value) |
static java.util.Collection<OrderType> |
validValues() |
static OrderType |
valueOf(java.lang.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.
|
public static final OrderType MARKET
public static final OrderType LIMIT
public static final OrderType STOP
public static final OrderType STOPLIMIT
public static final OrderType MARKETLIMIT
public static final OrderType PREVIOUSLY_QUOTED
public static final OrderType VWAP_SWEEP
public static final OrderType PREVIOUSLY_QUOTED_AMT_TIER
public static final OrderType _INVALID
public static OrderType[] values()
for (OrderType c : OrderType.values()) System.out.println(c);
public static OrderType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic byte get()
public static OrderType get(byte value)
public static java.util.Collection<OrderType> validValues()