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