Class UnaryExpression
- java.lang.Object
-
- org.apache.qpid.jms.selector.filter.UnaryExpression
-
- All Implemented Interfaces:
Expression
public abstract class UnaryExpression extends java.lang.Object implements Expression
An expression which performs an operation on two expression values
-
-
Field Summary
Fields Modifier and Type Field Description protected Expressionright
-
Constructor Summary
Constructors Constructor Description UnaryExpression(Expression left)
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static BooleanExpressioncreateBooleanCast(Expression left)static BooleanExpressioncreateInExpression(PropertyExpression right, java.util.List<java.lang.Object> elements, boolean not)static ExpressioncreateNegate(Expression left)static BooleanExpressioncreateNOT(BooleanExpression left)booleanequals(java.lang.Object o)TODO: more efficient hashCode()abstract java.lang.StringgetExpressionSymbol()Returns the symbol that represents this binary expression.ExpressiongetRight()inthashCode()TODO: more efficient hashCode()voidsetRight(Expression expression)java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.qpid.jms.selector.filter.Expression
evaluate
-
-
-
-
Field Detail
-
right
protected Expression right
-
-
Constructor Detail
-
UnaryExpression
public UnaryExpression(Expression left)
-
-
Method Detail
-
createNegate
public static Expression createNegate(Expression left)
-
createInExpression
public static BooleanExpression createInExpression(PropertyExpression right, java.util.List<java.lang.Object> elements, boolean not)
-
createNOT
public static BooleanExpression createNOT(BooleanExpression left)
-
createBooleanCast
public static BooleanExpression createBooleanCast(Expression left)
-
getRight
public Expression getRight()
-
setRight
public void setRight(Expression expression)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object- See Also:
Object.toString()
-
hashCode
public int hashCode()
TODO: more efficient hashCode()- Overrides:
hashCodein classjava.lang.Object- See Also:
Object.hashCode()
-
equals
public boolean equals(java.lang.Object o)
TODO: more efficient hashCode()- Overrides:
equalsin classjava.lang.Object- See Also:
Object.equals(java.lang.Object)
-
getExpressionSymbol
public abstract java.lang.String getExpressionSymbol()
Returns the symbol that represents this binary expression. For example, addition is represented by "+"- Returns:
- the symbol String
-
-