public static enum WalletTransaction.Pool extends Enum<WalletTransaction.Pool>
Modifier and Type | Method and Description |
---|---|
static WalletTransaction.Pool |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WalletTransaction.Pool[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WalletTransaction.Pool UNSPENT
public static final WalletTransaction.Pool SPENT
public static final WalletTransaction.Pool DEAD
public static final WalletTransaction.Pool PENDING
public static WalletTransaction.Pool[] values()
for (WalletTransaction.Pool c : WalletTransaction.Pool.values()) System.out.println(c);
public static WalletTransaction.Pool valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016. All rights reserved.