public enum Taker_side extends Enum<Taker_side>
This enum is multithread safe: it is stateless (except for the enumeration of values, which are immutable).
Like all java enums, this enum is Comparable and Serializable.
| Enum Constant and Description |
|---|
BUY |
BUY_ESTIMATED |
SELL |
SELL_ESTIMATED |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static Taker_side |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Taker_side[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Taker_side BUY
public static final Taker_side SELL
public static final Taker_side BUY_ESTIMATED
public static final Taker_side SELL_ESTIMATED
public static final Taker_side UNKNOWN
public static Taker_side[] values()
for (Taker_side c : Taker_side.values()) System.out.println(c);
public static Taker_side 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 © 2019 MARMOT SOLUTIONS LTD. All rights reserved.