public enum FundsAccount extends java.lang.Enum<FundsAccount>
| Enum Constant and Description |
|---|
AVAILABLE |
BASIC |
ECNY_BASIC |
OPERATION |
UNAVAILABLE |
UNSETTLED |
| Modifier and Type | Method and Description |
|---|---|
static FundsAccount |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FundsAccount[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="UNSETTLED") public static final FundsAccount UNSETTLED
@SerializedName(value="AVAILABLE") public static final FundsAccount AVAILABLE
@SerializedName(value="UNAVAILABLE") public static final FundsAccount UNAVAILABLE
@SerializedName(value="OPERATION") public static final FundsAccount OPERATION
@SerializedName(value="BASIC") public static final FundsAccount BASIC
@SerializedName(value="ECNY_BASIC") public static final FundsAccount ECNY_BASIC
public static FundsAccount[] values()
for (FundsAccount c : FundsAccount.values()) System.out.println(c);
public static FundsAccount 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