public static enum Expression.Operator extends Enum<Expression.Operator>
Expression
Enum Constant and Description |
---|
EQ
Constant of test's operator for 'equals to' comparison
|
GE
Constant of test's operator for 'greater than or equals to' comparison
|
GT
Constant of test's operator for 'greater than' comparison
|
LE
Constant of test's operator for 'less than or equals to' comparison
|
LT
Constant of test's operator for 'less than' comparison
|
NE
Constant of test's operator for 'not equals to' comparison
|
WD
Constant of test's operator for 'like' comparison.
|
Modifier and Type | Method and Description |
---|---|
static Expression.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Expression.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expression.Operator WD
public static final Expression.Operator LT
public static final Expression.Operator LE
public static final Expression.Operator GT
public static final Expression.Operator GE
public static final Expression.Operator EQ
public static final Expression.Operator NE
public static Expression.Operator[] values()
for (Expression.Operator c : Expression.Operator.values()) System.out.println(c);
public static Expression.Operator 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 null