public static enum DslExpression.ValueOperator extends Enum<DslExpression.ValueOperator> implements Operator
| 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 DslExpression.ValueOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DslExpression.ValueOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DslExpression.ValueOperator EQ
public static final DslExpression.ValueOperator LT
public static final DslExpression.ValueOperator LTE
public static final DslExpression.ValueOperator GT
public static final DslExpression.ValueOperator GTE
public static final DslExpression.ValueOperator NEQ
public static DslExpression.ValueOperator[] values()
for (DslExpression.ValueOperator c : DslExpression.ValueOperator.values()) System.out.println(c);
public static DslExpression.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 Operatorpublic String toString()
toString in class Enum<DslExpression.ValueOperator>Copyright © 2017. All Rights Reserved.