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