public enum BankingProductCategory extends Enum<BankingProductCategory>
| Enum Constant and Description |
|---|
BUSINESS_LOANS |
CRED_AND_CHRG_CARDS |
LEASES |
MARGIN_LOANS |
OVERDRAFTS |
PERS_LOANS |
REGULATED_TRUST_ACCOUNTS |
RESIDENTIAL_MORTGAGES |
TERM_DEPOSITS |
TRADE_FINANCE |
TRANS_AND_SAVINGS_ACCOUNTS |
TRAVEL_CARDS |
| Modifier and Type | Method and Description |
|---|---|
static BankingProductCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BankingProductCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankingProductCategory TRANS_AND_SAVINGS_ACCOUNTS
public static final BankingProductCategory TERM_DEPOSITS
public static final BankingProductCategory TRAVEL_CARDS
public static final BankingProductCategory REGULATED_TRUST_ACCOUNTS
public static final BankingProductCategory RESIDENTIAL_MORTGAGES
public static final BankingProductCategory CRED_AND_CHRG_CARDS
public static final BankingProductCategory PERS_LOANS
public static final BankingProductCategory MARGIN_LOANS
public static final BankingProductCategory LEASES
public static final BankingProductCategory TRADE_FINANCE
public static final BankingProductCategory OVERDRAFTS
public static final BankingProductCategory BUSINESS_LOANS
public static BankingProductCategory[] values()
for (BankingProductCategory c : BankingProductCategory.values()) System.out.println(c);
public static BankingProductCategory 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 © 2019. All rights reserved.