public enum ParamProductCategory extends Enum<ParamProductCategory>
Used to filter results on the productCategory field applicable to accounts. Any one of the valid values for this field can be supplied. If absent then all accounts returned.
| 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 ParamProductCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParamProductCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamProductCategory TRANS_AND_SAVINGS_ACCOUNTS
public static final ParamProductCategory TERM_DEPOSITS
public static final ParamProductCategory TRAVEL_CARDS
public static final ParamProductCategory REGULATED_TRUST_ACCOUNTS
public static final ParamProductCategory RESIDENTIAL_MORTGAGES
public static final ParamProductCategory CRED_AND_CHRG_CARDS
public static final ParamProductCategory PERS_LOANS
public static final ParamProductCategory MARGIN_LOANS
public static final ParamProductCategory LEASES
public static final ParamProductCategory TRADE_FINANCE
public static final ParamProductCategory OVERDRAFTS
public static final ParamProductCategory BUSINESS_LOANS
public static ParamProductCategory[] values()
for (ParamProductCategory c : ParamProductCategory.values()) System.out.println(c);
public static ParamProductCategory 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.