public static enum Enums.EntryState extends java.lang.Enum<Enums.EntryState>
Enum Constant and Description |
---|
NONE
No entry state, waiting for a signal to begin the entry process.
|
OPEN
Strategy has an open position.
|
PRE_ENTRY
Pre-Entry State.
|
WAITING_ENTRY
Order has been placed to open a position, waiting for order to be filled.
|
Modifier and Type | Method and Description |
---|---|
static Enums.EntryState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enums.EntryState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enums.EntryState NONE
public static final Enums.EntryState PRE_ENTRY
public static final Enums.EntryState WAITING_ENTRY
public static final Enums.EntryState OPEN
public static Enums.EntryState[] values()
for (Enums.EntryState c : Enums.EntryState.values()) System.out.println(c);
public static Enums.EntryState 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 null