Interface OrderByExpressionVisitor

All Known Implementing Classes:
DefaultOrderByExpressionVisitor

public interface OrderByExpressionVisitor
Acts as a delegate to visiting the OrderByExpression. The intended usage of this interface is to call the visit method from the ExpressionVisitor.visitOrderByExpression(OrderByExpression, String, List<Object>)
  • Method Summary

    Modifier and Type
    Method
    Description
    visit(org.apache.olingo.odata2.api.uri.expression.OrderByExpression expression, String expressionString, List<Object> orders)
    Visit the OrderByExpression
  • Method Details

    • visit

      List<OrderExpression> visit(org.apache.olingo.odata2.api.uri.expression.OrderByExpression expression, String expressionString, List<Object> orders)
      Visit the OrderByExpression
      Parameters:
      expression - The visited orderby expression node
      expressionString - The $orderby expression string used to build the orderby expression tree
      orders - The result of visiting the orders of the orderby expression
      Returns:
      The resulting List<OrderExpression> from visiting the OrderByExpression