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
-
Method Details
-
visit
List<OrderExpression> visit(org.apache.olingo.odata2.api.uri.expression.OrderByExpression expression, String expressionString, List<Object> orders) Visit theOrderByExpression- Parameters:
expression- The visited orderby expression nodeexpressionString- The $orderby expression string used to build the orderby expression treeorders- The result of visiting the orders of the orderby expression- Returns:
- The resulting
List<OrderExpression>from visiting the OrderByExpression
-