Package io.atlasmap.expression.internal
Class BinaryExpression
java.lang.Object
io.atlasmap.expression.internal.BinaryExpression
- All Implemented Interfaces:
Expression
- Direct Known Subclasses:
ArithmeticExpression
,ComparisonExpression
,LogicExpression
An expression which performs an operation on two expression values.
- Version:
- $Revision: 1.2 $
-
Field Summary
Fields inherited from interface io.atlasmap.expression.Expression
CACHE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
abstract String
Returns the symbol that represents this binary expression.getLeft()
getRight()
int
hashCode()
TODO: more efficient hashCode()void
setLeft
(Expression expression) 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
-
left
-
right
-
-
Constructor Details
-
BinaryExpression
-
-
Method Details
-
getLeft
-
getRight
-
toString
-
hashCode
public int hashCode()TODO: more efficient hashCode() -
equals
-
getExpressionSymbol
Returns the symbol that represents this binary expression. For example, addition is represented by "+"- Returns:
- expression symbol string
-
setRight
- Parameters:
expression
- rightExpression
-
setLeft
- Parameters:
expression
- leftExpression
-