Uses of Class
org.datanucleus.query.expression.Expression.Operator
-
Packages that use Expression.Operator Package Description org.datanucleus.query This package provides general classes for querying across all datastores in particular languages.org.datanucleus.query.expression Package providing expressions from which a (generically) compiled query is made up. -
-
Uses of Expression.Operator in org.datanucleus.query
Methods in org.datanucleus.query with parameters of type Expression.Operator Modifier and Type Method Description static booleanQueryUtils. compareExpressionValues(Object left, Object right, Expression.Operator op)Convenience method to compare two expression values against the specified operator. -
Uses of Expression.Operator in org.datanucleus.query.expression
Subclasses of Expression.Operator in org.datanucleus.query.expression Modifier and Type Class Description static classExpression.DyadicOperator"Dyadic" operator performs operation on one or two operands.static classExpression.MonadicOperator"Monadic" operator performs a function on one operand.Fields in org.datanucleus.query.expression declared as Expression.Operator Modifier and Type Field Description protected Expression.OperatorExpression. opMethods in org.datanucleus.query.expression that return Expression.Operator Modifier and Type Method Description Expression.OperatorExpression. getOperator()The operator to be performed by this expression.Methods in org.datanucleus.query.expression with parameters of type Expression.Operator Modifier and Type Method Description booleanExpression.MonadicOperator. isHigherThan(Expression.Operator op)Check if this operator has higher precedence thanopbooleanExpression.DyadicOperator. isHigherThanLeftSide(Expression.Operator op)Checks if this operation is higher than operatoropin left side of the expressionbooleanExpression.DyadicOperator. isHigherThanRightSide(Expression.Operator op)Checks if this operation is higher than operatoropin right side of the expression
-