public static enum BankingProductDepositRate.DepositRateType extends Enum<BankingProductDepositRate.DepositRateType>
| Enum Constant and Description |
|---|
BONUS |
BUNDLE_BONUS |
FIXED |
FLOATING |
INTRODUCTORY |
MARKET_LINKED |
VARIABLE |
| Modifier and Type | Method and Description |
|---|---|
static BankingProductDepositRate.DepositRateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BankingProductDepositRate.DepositRateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankingProductDepositRate.DepositRateType FIXED
public static final BankingProductDepositRate.DepositRateType BONUS
public static final BankingProductDepositRate.DepositRateType BUNDLE_BONUS
public static final BankingProductDepositRate.DepositRateType VARIABLE
public static final BankingProductDepositRate.DepositRateType INTRODUCTORY
public static final BankingProductDepositRate.DepositRateType FLOATING
public static final BankingProductDepositRate.DepositRateType MARKET_LINKED
public static BankingProductDepositRate.DepositRateType[] values()
for (BankingProductDepositRate.DepositRateType c : BankingProductDepositRate.DepositRateType.values()) System.out.println(c);
public static BankingProductDepositRate.DepositRateType 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.