|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IOrder.State>
com.dukascopy.api.IOrder.State
public static enum IOrder.State
Indicates state of the order
Enum Constant Summary | |
---|---|
CANCELED
Set after order was cancelled |
|
CLOSED
Set after order was closed |
|
CREATED
Set right after order submission and before order acceptance by the server |
|
FILLED
Set after order was fully or partially filled. |
|
OPENED
Set after order submission for conditional orders. |
Method Summary | |
---|---|
static IOrder.State |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IOrder.State[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final IOrder.State CREATED
public static final IOrder.State OPENED
public static final IOrder.State FILLED
public static final IOrder.State CLOSED
public static final IOrder.State CANCELED
Method Detail |
---|
public static IOrder.State[] values()
for (IOrder.State c : IOrder.State.values()) System.out.println(c);
public static IOrder.State valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |