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)
    Deprecated, for removal: This API element is subject to removal in a future version.
    This method will become internal only API.
    static <P> OrderBy<P>
    OrderBy.of(String orderByClause)
    Create an OrderBy parsing the given order by clause.
    default OrderBy<T>
    ExpressionList.order()
    Deprecated, for removal: This API element is subject to removal in a future version.
    default OrderBy<T>
    Query.order()
    Deprecated, for removal: This API element is subject to removal in a future version.
    migrate to Query.orderBy().
    ExpressionList.orderBy()
    Return the OrderBy so that you can append an ascending or descending property to the order by clause.
    Paging.orderBy()
    Return the order by.
    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
    static Paging
    Paging.of(int pageIndex, int pageSize, @Nullable OrderBy<?> orderBy)
    Create a Paging with the given page index size and orderBy.
    default Query<T>
    Query.setOrder(OrderBy<T> orderBy)
    Deprecated, for removal: This API element is subject to removal in a future version.
    QueryBuilder.setOrderBy(OrderBy<T> orderBy)
    Set an OrderBy object to replace any existing OrderBy clause.