Class UnaryExpression
java.lang.Object
org.apache.activemq.artemis.selector.filter.UnaryExpression
- All Implemented Interfaces:
Expression
An expression which performs an operation on two expression values
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic BooleanExpressioncreateBooleanCast(Expression left) static BooleanExpressioncreateInExpression(PropertyExpression right, List<Object> elements, boolean not) static ExpressioncreateNegate(Expression left) static BooleanExpressioncreateNOT(BooleanExpression left) static BooleanExpressioncreateXPath(String xpath) static BooleanExpressioncreateXQuery(String xpath) booleanabstract StringReturns the symbol that represents this binary expression, e.g. addition is represented by "+".getRight()inthashCode()voidsetRight(Expression expression) toString()Methods inherited from interface Expression
evaluate
-
Field Details
-
right
-
-
Constructor Details
-
UnaryExpression
-
-
Method Details
-
createNegate
-
createInExpression
public static BooleanExpression createInExpression(PropertyExpression right, List<Object> elements, boolean not) -
createNOT
-
createXPath
-
createXQuery
-
createBooleanCast
-
getRight
-
setRight
-
toString
-
hashCode
-
equals
-
getExpressionSymbol
Returns the symbol that represents this binary expression, e.g. addition is represented by "+".- Returns:
- the symbol that represents this binary expression, e.g. addition is represented by "+"
-