public enum BankAccountType extends java.lang.Enum<BankAccountType>
| Enum Constant and Description |
|---|
CA
CA bank account type.
|
GB
GB bank account type.
|
IBAN
IBAN bank account type.
|
NotSpecified
Not specified.
|
OTHER
OTHER bank account type.
|
US
US bank account type.
|
| Modifier and Type | Method and Description |
|---|---|
static BankAccountType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BankAccountType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankAccountType NotSpecified
public static final BankAccountType IBAN
public static final BankAccountType GB
public static final BankAccountType US
public static final BankAccountType CA
public static final BankAccountType OTHER
public static BankAccountType[] values()
for (BankAccountType c : BankAccountType.values()) System.out.println(c);
public static BankAccountType 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