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