Enum Constant and Description |
---|
CANCEL_OTHERS
One Fill cancels all other Orders
|
NONE
None
|
REDUCE_OTHERS
One Fill reduces the quantity of the other Order
|
Modifier and Type | Method and Description |
---|---|
static OCOType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OCOType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OCOType NONE
public static final OCOType CANCEL_OTHERS
public static final OCOType REDUCE_OTHERS
public static OCOType[] values()
for (OCOType c : OCOType.values()) System.out.println(c);
public static OCOType 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