Package io.atlasmap.expression.internal
Class UnaryExpression
java.lang.Object
io.atlasmap.expression.internal.UnaryExpression
- All Implemented Interfaces:
Expression
An expression which performs an operation on two expression values.
- Version:
- $Revision: 1.3 $
-
Field Summary
Fields inherited from interface io.atlasmap.expression.Expression
CACHE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic BooleanExpression
createBooleanCast
(Expression left) static BooleanExpression
createInExpression
(VariableExpression right, List<Object> elements, boolean not) static Expression
createNegate
(Expression left) static BooleanExpression
createNOT
(BooleanExpression left) boolean
TODO: more efficient hashCode()abstract String
Returns the symbol that represents this binary expression.getRight()
int
hashCode()
TODO: more efficient hashCode()void
setRight
(Expression expression) toString()
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface io.atlasmap.expression.Expression
evaluate
-
Field Details
-
right
-
-
Constructor Details
-
UnaryExpression
-
-
Method Details
-
createNegate
-
createInExpression
public static BooleanExpression createInExpression(VariableExpression right, List<Object> elements, boolean not) -
createNOT
-
createBooleanCast
-
getRight
-
setRight
-
toString
-
hashCode
public int hashCode()TODO: more efficient hashCode() -
equals
TODO: more efficient hashCode() -
getExpressionSymbol
Returns the symbol that represents this binary expression. For example, addition is represented by "+"- Returns:
- expression symbol string
-