Interface BinaryExpressionVisitor
- All Known Implementing Classes:
DefaultBinaryExpressionVisitor
public interface BinaryExpressionVisitor
Acts as a delegate to visiting the
BinaryExpression. The intended usage
of this interface is to call the visit method from the
ExpressionVisitor.visitBinary(BinaryExpression, BinaryOperator, Object, Object)-
Method Summary
-
Method Details
-
visit
Object visit(org.apache.olingo.odata2.api.uri.expression.BinaryExpression expression, org.apache.olingo.odata2.api.uri.expression.BinaryOperator operator, Object leftResult, Object rightResult) Visit theBinaryExpression- Parameters:
expression- Binary expressionoperator- Operator on the left and right operandsleftResult- Result from visiting the left operandrightResult- Result from visiting the right operand- Returns:
- The result from this visit method
-