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