Package io.atlasmap.expression.internal
Class UnaryExpression
- java.lang.Object
-
- io.atlasmap.expression.internal.UnaryExpression
-
- All Implemented Interfaces:
Expression
public abstract class UnaryExpression extends Object implements Expression
An expression which performs an operation on two expression values.- Version:
- $Revision: 1.3 $
-
-
Field Summary
Fields Modifier and Type Field Description protected Expressionright-
Fields inherited from interface io.atlasmap.expression.Expression
CACHE
-
-
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(VariableExpression right, List<Object> elements, boolean not)static ExpressioncreateNegate(Expression left)static BooleanExpressioncreateNOT(BooleanExpression left)booleanequals(Object o)TODO: more efficient hashCode()abstract StringgetExpressionSymbol()Returns the symbol that represents this binary expression.ExpressiongetRight()inthashCode()TODO: more efficient hashCode()voidsetRight(Expression expression)StringtoString()-
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 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(VariableExpression right, List<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)
-
equals
public boolean equals(Object o)
TODO: more efficient hashCode()
-
getExpressionSymbol
public abstract String getExpressionSymbol()
Returns the symbol that represents this binary expression. For example, addition is represented by "+"- Returns:
- expression symbol string
-
-