public class DyadicExpression extends Expression
Expression.DyadicOperator, Expression.MonadicOperator, Expression.Operator
alias, left, op, OP_ADD, OP_AND, OP_BIT_AND, OP_BIT_OR, OP_BIT_XOR, OP_CAST, OP_COM, OP_CONCAT, OP_DISTINCT, OP_DIV, OP_EQ, OP_GT, OP_GTEQ, OP_IN, OP_IS, OP_ISNOT, OP_LIKE, OP_LT, OP_LTEQ, OP_MOD, OP_MUL, OP_NEG, OP_NOT, OP_NOTEQ, OP_NOTIN, OP_OR, OP_SUB, parent, right, symbol
Constructor and Description |
---|
DyadicExpression(Expression.MonadicOperator op,
Expression operand)
Perform a function
op on operand |
DyadicExpression(Expression operand1,
Expression.DyadicOperator op,
Expression operand2)
Performs a function on two arguments.
|
Modifier and Type | Method and Description |
---|---|
Symbol |
bind(SymbolTable symtbl)
Method to bind the expression to the symbol table as appropriate.
|
Object |
evaluate(ExpressionEvaluator eval)
Method to evaluate this expression, using the passed evaluator.
|
String |
toString() |
getAlias, getLeft, getOperator, getParent, getRight, getSymbol, setAlias, setLeft, setRight
public DyadicExpression(Expression.MonadicOperator op, Expression operand)
op
on operand
op
- operatoroperand
- operandpublic DyadicExpression(Expression operand1, Expression.DyadicOperator op, Expression operand2)
operand1
- the first expressionop
- the operator between operandsoperand2
- the second expressionpublic Object evaluate(ExpressionEvaluator eval)
evaluate
in class Expression
eval
- Evaluatorpublic Symbol bind(SymbolTable symtbl)
bind
in class Expression
symtbl
- Symbol tableCopyright © 2019. All rights reserved.