public enum BbanEntryType extends java.lang.Enum<BbanEntryType>
| Enum Constant and Description |
|---|
ACCOUNT_NUMBER |
ACCOUNT_TYPE |
BANK_CODE |
BRANCH_CODE |
CURRENCY |
IDENTIFICATION_NUMBER |
NATIONAL_CHECK_DIGIT |
OWNER_ACCOUNT_NUMBER |
| Modifier and Type | Method and Description |
|---|---|
static BbanEntryType |
fromString(java.lang.String text) |
java.lang.String |
getText() |
static BbanEntryType |
valueOf(java.lang.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 final BbanEntryType CURRENCY
public static BbanEntryType[] values()
for (BbanEntryType c : BbanEntryType.values()) System.out.println(c);
public static BbanEntryType 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 nullpublic static BbanEntryType fromString(java.lang.String text)
public java.lang.String getText()