public enum OrderType extends Enum<OrderType>
| Enum Constant and Description |
|---|
LIMIT |
LIMIT_MAKER |
MARKET |
STOP_LOSS |
STOP_LOSS_LIMIT |
TAKE_PROFIT |
TAKE_PROFIT_LIMIT |
| Modifier and Type | Method and Description |
|---|---|
static OrderType |
getOrderType(String s) |
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.
|
public static final OrderType LIMIT
public static final OrderType MARKET
public static final OrderType TAKE_PROFIT_LIMIT
public static final OrderType STOP_LOSS_LIMIT
public static final OrderType STOP_LOSS
public static final OrderType TAKE_PROFIT
public static final OrderType LIMIT_MAKER
public static OrderType[] values()
for (OrderType c : OrderType.values()) System.out.println(c);
public static OrderType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012–2018 Knowm Inc.. All rights reserved.