Uses of Class
io.ebean.OrderBy

Packages that use OrderBy
Package
Description
Core API (see Database, DB and Query).
  • Uses of OrderBy in io.ebean

    Methods in io.ebean that return OrderBy
    Modifier and Type
    Method
    Description
    OrderBy.clear()
    Clear the orderBy removing any current order by properties.
    OrderBy.copy()
    Return a copy of the OrderBy.
    OrderBy.copyWithTrim(String path)
    Return a copy of this OrderBy with the path trimmed.
    ExpressionList.order()
    Return the OrderBy so that you can append an ascending or descending property to the order by clause.
    default OrderBy<T>
    Query.order()
    Return the OrderBy so that you can append an ascending or descending property to the order by clause.
    ExpressionList.orderBy()
    Return the OrderBy so that you can append an ascending or descending property to the order by clause.
    Query.orderBy()
    Return the OrderBy so that you can append an ascending or descending property to the order by clause.
    Methods in io.ebean with parameters of type OrderBy
    Modifier and Type
    Method
    Description
    default Query<T>
    Query.setOrder(OrderBy<T> orderBy)
    Set an OrderBy object to replace any existing OrderBy clause.
    Query.setOrderBy(OrderBy<T> orderBy)
    Set an OrderBy object to replace any existing OrderBy clause.