public interface ExpressionVisitor
Modifier and Type | Method and Description |
---|---|
Object |
visitBinaryOperation(BinaryOperation operation)
Visits the given binary expression.
|
Object |
visitFunctionCall(FunctionCall call)
Visits the given function call.
|
Object |
visitLiteral(Literal literal)
Visits the given literal.
|
Object |
visitReference(Reference reference)
Visits the given cell reference.
|
Object |
visitUnaryOperation(UnaryOperation operation)
Visits the given unary expression.
|
Object visitLiteral(Literal literal)
literal
- the literal to visitObject visitUnaryOperation(UnaryOperation operation)
operation
- the operation to visitObject visitBinaryOperation(BinaryOperation operation)
operation
- the operation to visitObject visitReference(Reference reference)
reference
- the reference to visitObject visitFunctionCall(FunctionCall call)
call
- the function call to visit