public enum OutputType extends Enum<OutputType>
| Enum Constant and Description |
|---|
ALL
all objects, regardless of type (includes all the above)
|
EVENTS
events created by this strategy
|
LOG
log output created by this strategy
|
NOTIFICATIONS
notifications created by this strategy
|
ORDERS
orders created by this strategy
|
SUGGESTIONS
trade suggestions created by this strategy
|
| Modifier and Type | Method and Description |
|---|---|
static OutputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputType ORDERS
public static final OutputType SUGGESTIONS
public static final OutputType EVENTS
public static final OutputType NOTIFICATIONS
public static final OutputType LOG
public static final OutputType ALL
public static OutputType[] values()
for (OutputType c : OutputType.values()) System.out.println(c);
public static OutputType 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 © 2017. All Rights Reserved.