public static enum BankingAccountDetail.SpecificAccountUType extends Enum<BankingAccountDetail.SpecificAccountUType>
| Enum Constant and Description |
|---|
creditCard |
loan |
termDeposit |
| Modifier and Type | Method and Description |
|---|---|
static BankingAccountDetail.SpecificAccountUType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BankingAccountDetail.SpecificAccountUType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankingAccountDetail.SpecificAccountUType termDeposit
public static final BankingAccountDetail.SpecificAccountUType creditCard
public static final BankingAccountDetail.SpecificAccountUType loan
public static BankingAccountDetail.SpecificAccountUType[] values()
for (BankingAccountDetail.SpecificAccountUType c : BankingAccountDetail.SpecificAccountUType.values()) System.out.println(c);
public static BankingAccountDetail.SpecificAccountUType 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.