public static enum BankingProductFee.FeeTypeEnum extends Enum<BankingProductFee.FeeTypeEnum>
| Enum Constant and Description |
|---|
DEPOSIT |
EVENT |
EXIT |
PAYMENT |
PERIODIC |
PURCHASE |
TRANSACTION |
UPFRONT |
WITHDRAWAL |
| Modifier and Type | Method and Description |
|---|---|
static BankingProductFee.FeeTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BankingProductFee.FeeTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankingProductFee.FeeTypeEnum DEPOSIT
public static final BankingProductFee.FeeTypeEnum EVENT
public static final BankingProductFee.FeeTypeEnum EXIT
public static final BankingProductFee.FeeTypeEnum PAYMENT
public static final BankingProductFee.FeeTypeEnum PERIODIC
public static final BankingProductFee.FeeTypeEnum PURCHASE
public static final BankingProductFee.FeeTypeEnum TRANSACTION
public static final BankingProductFee.FeeTypeEnum UPFRONT
public static final BankingProductFee.FeeTypeEnum WITHDRAWAL
public static BankingProductFee.FeeTypeEnum[] values()
for (BankingProductFee.FeeTypeEnum c : BankingProductFee.FeeTypeEnum.values()) System.out.println(c);
public static BankingProductFee.FeeTypeEnum 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.