public enum AmountOperator extends Enum<AmountOperator> implements RuleParameterEnum
| Enum Constant and Description |
|---|
EQUAL |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
LESS_THAN |
LESS_THAN_OR_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static AmountOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AmountOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmountOperator EQUAL
public static final AmountOperator GREATER_THAN
public static final AmountOperator GREATER_THAN_OR_EQUAL
public static final AmountOperator LESS_THAN
public static final AmountOperator LESS_THAN_OR_EQUAL
public static AmountOperator[] values()
for (AmountOperator c : AmountOperator.values()) System.out.println(c);
public static AmountOperator 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 © 2017 SAP SE. All Rights Reserved.