public enum BbanEntryType extends Enum<BbanEntryType>
| Enum Constant and Description |
|---|
account_number |
account_type |
bank_code |
branch_code |
identification_number |
national_check_digit |
owner_account_number |
| Modifier and Type | Method and Description |
|---|---|
static BbanEntryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BbanEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BbanEntryType bank_code
public static final BbanEntryType branch_code
public static final BbanEntryType account_number
public static final BbanEntryType national_check_digit
public static final BbanEntryType account_type
public static final BbanEntryType owner_account_number
public static final BbanEntryType identification_number
public static BbanEntryType[] values()
for (BbanEntryType c : BbanEntryType.values()) System.out.println(c);
public static BbanEntryType 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 © 2020. All rights reserved.