public enum BankingEnumProductCategory extends Enum<BankingEnumProductCategory>
The category to which a product or account belongs. See [here](#product-categories) for more details
| 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 BankingEnumProductCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BankingEnumProductCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankingEnumProductCategory TRANS_AND_SAVINGS_ACCOUNTS
public static final BankingEnumProductCategory TERM_DEPOSITS
public static final BankingEnumProductCategory TRAVEL_CARDS
public static final BankingEnumProductCategory REGULATED_TRUST_ACCOUNTS
public static final BankingEnumProductCategory RESIDENTIAL_MORTGAGES
public static final BankingEnumProductCategory CRED_AND_CHRG_CARDS
public static final BankingEnumProductCategory PERS_LOANS
public static final BankingEnumProductCategory MARGIN_LOANS
public static final BankingEnumProductCategory LEASES
public static final BankingEnumProductCategory TRADE_FINANCE
public static final BankingEnumProductCategory OVERDRAFTS
public static final BankingEnumProductCategory BUSINESS_LOANS
public static BankingEnumProductCategory[] values()
for (BankingEnumProductCategory c : BankingEnumProductCategory.values()) System.out.println(c);
public static BankingEnumProductCategory 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.