public static enum BankAccount.COLUMNS extends Enum<BankAccount.COLUMNS>
Enum Constant and Description |
---|
bankAccountId |
bic |
clearing |
currencyCode |
iban |
name |
otherCode |
postalAddressId |
Modifier and Type | Method and Description |
---|---|
static BankAccount.COLUMNS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BankAccount.COLUMNS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankAccount.COLUMNS bankAccountId
public static final BankAccount.COLUMNS postalAddressId
public static final BankAccount.COLUMNS name
public static final BankAccount.COLUMNS iban
public static final BankAccount.COLUMNS bic
public static final BankAccount.COLUMNS clearing
public static final BankAccount.COLUMNS otherCode
public static final BankAccount.COLUMNS currencyCode
public static BankAccount.COLUMNS[] values()
for (BankAccount.COLUMNS c : BankAccount.COLUMNS.values()) System.out.println(c);
public static BankAccount.COLUMNS 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 © 2011–2019 Plain Source. All rights reserved.