Uses of Class
com.github.mhewedy.expressions.Operator
-
-
Uses of Operator in com.github.mhewedy.expressions
Methods in com.github.mhewedy.expressions that return Operator Modifier and Type Method Description static Operator
Operator. valueOf(String name)
Returns the enum constant of this type with the specified name.static Operator[]
Operator. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.github.mhewedy.expressions with parameters of type Operator Modifier and Type Method Description static Expression
Expression. of(String field, Operator operator, Number value)
static Expression
Expression. of(String field, Operator operator, Number... values)
static Expression
Expression. of(String field, Operator operator, String value)
static Expression
Expression. of(String field, Operator operator, String... values)
static Expression
Expression. of(String field, Operator operator, java.time.temporal.Temporal value)
static Expression
Expression. of(String field, Operator operator, java.time.temporal.Temporal... values)
-