public enum ExchEventType extends java.lang.Enum<ExchEventType>
| Enum Constant and Description |
|---|
_INVALID |
CREDITAVAILABLE |
CREDITEXHAUSTED |
CREDITLOW |
ERROR |
NO_CANCEL |
PRE_OPEN |
TRADEDATEROLLOVER |
TRADING_CLOSED |
TRADING_OPEN |
VALUEDATEROLLOVER |
| Modifier and Type | Field and Description |
|---|---|
byte |
val |
| Modifier and Type | Method and Description |
|---|---|
byte |
get() |
static ExchEventType |
get(byte value) |
static java.util.Collection<ExchEventType> |
validValues() |
static ExchEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExchEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExchEventType CREDITAVAILABLE
public static final ExchEventType CREDITLOW
public static final ExchEventType CREDITEXHAUSTED
public static final ExchEventType TRADEDATEROLLOVER
public static final ExchEventType VALUEDATEROLLOVER
public static final ExchEventType TRADING_OPEN
public static final ExchEventType TRADING_CLOSED
public static final ExchEventType ERROR
public static final ExchEventType PRE_OPEN
public static final ExchEventType NO_CANCEL
public static final ExchEventType _INVALID
public static ExchEventType[] values()
for (ExchEventType c : ExchEventType.values()) System.out.println(c);
public static ExchEventType 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 byte get()
public static ExchEventType get(byte value)
public static java.util.Collection<ExchEventType> validValues()