public static enum AccountState.Status extends java.lang.Enum<AccountState.Status>
| Enum Constant and Description |
|---|
ACTIVE |
LIQUIDATION |
MARGIN_CALL |
| Modifier and Type | Method and Description |
|---|---|
static AccountState.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountState.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountState.Status ACTIVE
public static final AccountState.Status MARGIN_CALL
public static final AccountState.Status LIQUIDATION
public static AccountState.Status[] values()
for (AccountState.Status c : AccountState.Status.values()) System.out.println(c);
public static AccountState.Status 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