public static enum BankingProductConstraint.ConstraintTypeEnum extends Enum<BankingProductConstraint.ConstraintTypeEnum>
| Enum Constant and Description |
|---|
MAX_BALANCE |
MAX_LIMIT |
MIN_BALANCE |
MIN_LIMIT |
OPENING_BALANCE |
| Modifier and Type | Method and Description |
|---|---|
static BankingProductConstraint.ConstraintTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BankingProductConstraint.ConstraintTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankingProductConstraint.ConstraintTypeEnum MAX_BALANCE
public static final BankingProductConstraint.ConstraintTypeEnum MAX_LIMIT
public static final BankingProductConstraint.ConstraintTypeEnum MIN_BALANCE
public static final BankingProductConstraint.ConstraintTypeEnum MIN_LIMIT
public static final BankingProductConstraint.ConstraintTypeEnum OPENING_BALANCE
public static BankingProductConstraint.ConstraintTypeEnum[] values()
for (BankingProductConstraint.ConstraintTypeEnum c : BankingProductConstraint.ConstraintTypeEnum.values()) System.out.println(c);
public static BankingProductConstraint.ConstraintTypeEnum 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.