public static enum Account.Event extends java.lang.Enum<Account.Event>
| Enum Constant and Description |
|---|
ASSET_BALANCE |
CURRENCY_BALANCE |
DELETE_PROPERTY |
LEASE_ENDED |
LEASE_SCHEDULED |
LEASE_STARTED |
SET_PROPERTY |
UNCONFIRMED_ASSET_BALANCE |
UNCONFIRMED_CURRENCY_BALANCE |
| Modifier and Type | Method and Description |
|---|---|
static Account.Event |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Account.Event[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Account.Event ASSET_BALANCE
public static final Account.Event UNCONFIRMED_ASSET_BALANCE
public static final Account.Event CURRENCY_BALANCE
public static final Account.Event UNCONFIRMED_CURRENCY_BALANCE
public static final Account.Event LEASE_SCHEDULED
public static final Account.Event LEASE_STARTED
public static final Account.Event LEASE_ENDED
public static final Account.Event SET_PROPERTY
public static final Account.Event DELETE_PROPERTY
public static Account.Event[] values()
for (Account.Event c : Account.Event.values()) System.out.println(c);
public static Account.Event 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