public static enum BankingProductDiscount.DiscountTypeEnum extends Enum<BankingProductDiscount.DiscountTypeEnum>
| Enum Constant and Description |
|---|
BALANCE |
DEPOSITS |
ELIGIBILITY_ONLY |
FEE_CAP |
PAYMENTS |
| Modifier and Type | Method and Description |
|---|---|
static BankingProductDiscount.DiscountTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BankingProductDiscount.DiscountTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankingProductDiscount.DiscountTypeEnum BALANCE
public static final BankingProductDiscount.DiscountTypeEnum DEPOSITS
public static final BankingProductDiscount.DiscountTypeEnum ELIGIBILITY_ONLY
public static final BankingProductDiscount.DiscountTypeEnum FEE_CAP
public static final BankingProductDiscount.DiscountTypeEnum PAYMENTS
public static BankingProductDiscount.DiscountTypeEnum[] values()
for (BankingProductDiscount.DiscountTypeEnum c : BankingProductDiscount.DiscountTypeEnum.values()) System.out.println(c);
public static BankingProductDiscount.DiscountTypeEnum 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.