public enum ProgressType extends java.lang.Enum<ProgressType>
Enum Constant and Description |
---|
Accepted
Order was accepted by server.
|
Closed
Order was closed.
|
ClosedBy
Closed of pair of opposite orders.
|
Exception
Exception.
|
InProcess
Server started to execute the order.
|
Modified
Order was modified.
|
MultipleClosedBy
Closed of multiple orders.
|
Opened
Order was opened.
|
PendingDeleted
Pending order was deleted.
|
Price
Price data.
|
Rejected
Order was rejected.
|
Timeout
Trade timeout.
|
Modifier and Type | Field and Description |
---|---|
static int |
SIZE |
Modifier and Type | Method and Description |
---|---|
static ProgressType |
forValue(int value) |
int |
getValue() |
static ProgressType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProgressType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgressType Rejected
public static final ProgressType Accepted
public static final ProgressType InProcess
public static final ProgressType Opened
public static final ProgressType Closed
public static final ProgressType Modified
public static final ProgressType PendingDeleted
public static final ProgressType ClosedBy
public static final ProgressType MultipleClosedBy
public static final ProgressType Timeout
public static final ProgressType Price
public static final ProgressType Exception
public static final int SIZE
public static ProgressType[] values()
for (ProgressType c : ProgressType.values()) System.out.println(c);
public static ProgressType 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 nullpublic int getValue()
public static ProgressType forValue(int value)