public static enum BankAccountTO.BankAccountTypeTO extends Enum<BankAccountTO.BankAccountTypeTO>
| Enum Constant and Description |
|---|
BUIILDINGSAVING |
CREDITCARD |
DEPOT |
FIXEDTERMDEPOSIT |
GIRO |
INSURANCE |
LOAN |
SAVINGS |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static BankAccountTO.BankAccountTypeTO |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BankAccountTO.BankAccountTypeTO[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankAccountTO.BankAccountTypeTO GIRO
public static final BankAccountTO.BankAccountTypeTO SAVINGS
public static final BankAccountTO.BankAccountTypeTO FIXEDTERMDEPOSIT
public static final BankAccountTO.BankAccountTypeTO DEPOT
public static final BankAccountTO.BankAccountTypeTO LOAN
public static final BankAccountTO.BankAccountTypeTO CREDITCARD
public static final BankAccountTO.BankAccountTypeTO BUIILDINGSAVING
public static final BankAccountTO.BankAccountTypeTO INSURANCE
public static final BankAccountTO.BankAccountTypeTO UNKNOWN
public static BankAccountTO.BankAccountTypeTO[] values()
for (BankAccountTO.BankAccountTypeTO c : BankAccountTO.BankAccountTypeTO.values()) System.out.println(c);
public static BankAccountTO.BankAccountTypeTO 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.