Uses of Class
com.github.mhewedy.expressions.Expression
-
-
Uses of Expression in com.github.mhewedy.expressions
Methods in com.github.mhewedy.expressions that return Expression Modifier and Type Method Description ExpressionExpression. and(Expression expression)apply "and" on current expression with the parameter expression.static ExpressionExpression. and(Expression... expressions)factory method used to create new expression that "and" all input expressions.static ExpressionExpression. of(String field, Operator operator, Number value)static ExpressionExpression. of(String field, Operator operator, Number... values)Used with operators require list of elements, such asOperator.$inandOperator.$ninstatic ExpressionExpression. of(String field, Operator operator, String value)static ExpressionExpression. of(String field, Operator operator, String... values)Used with operators require list of elements, such asOperator.$inandOperator.$ninstatic ExpressionExpression. of(String field, Operator operator, java.time.temporal.Temporal value)static ExpressionExpression. of(String field, Operator operator, java.time.temporal.Temporal... values)Used with operators require list of elements, such asOperator.$inandOperator.$ninExpressionExpression. or(Expression expression)apply "or" on current expression with the parameter expression.static ExpressionExpression. or(Expression... expressions)factory method used to create new expression that "or" all input expressions.Methods in com.github.mhewedy.expressions with parameters of type Expression Modifier and Type Method Description ExpressionExpression. and(Expression expression)apply "and" on current expression with the parameter expression.static ExpressionExpression. and(Expression... expressions)factory method used to create new expression that "and" all input expressions.ExpressionsExpressions. and(Expression expression)Add the parameter expression to the list of expression in the expressions object.ExpressionExpression. or(Expression expression)apply "or" on current expression with the parameter expression.static ExpressionExpression. or(Expression... expressions)factory method used to create new expression that "or" all input expressions.ExpressionsExpressions. or(Expression expression)Create a new $or expression on the root, then adds to it the current expressions attached at the root and the expression passes as parameter.
-