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