public static enum RuleExpression.ValueOperator extends Enum<RuleExpression.ValueOperator> implements RuleOperator
| Enum Constant and Description |
|---|
EQ
Equals.
|
GT
Greater Than.
|
GTE
Greater Than or Equals.
|
LT
Lesser Than.
|
LTE
Lesser Than or Equals.
|
NEQ
Not Equals.
|
| Modifier and Type | Method and Description |
|---|---|
String[] |
authorizedString() |
String |
toString() |
static RuleExpression.ValueOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuleExpression.ValueOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuleExpression.ValueOperator LTE
public static final RuleExpression.ValueOperator GTE
public static final RuleExpression.ValueOperator NEQ
public static final RuleExpression.ValueOperator EQ
public static final RuleExpression.ValueOperator LT
public static final RuleExpression.ValueOperator GT
public static RuleExpression.ValueOperator[] values()
for (RuleExpression.ValueOperator c : RuleExpression.ValueOperator.values()) System.out.println(c);
public static RuleExpression.ValueOperator 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 nullpublic String[] authorizedString()
authorizedString in interface RuleOperatorpublic String toString()
toString in class Enum<RuleExpression.ValueOperator>Copyright © 2019. All Rights Reserved.