Uses of Interface
io.ebean.Paging

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

    Methods in io.ebean that return Paging
    Modifier and Type
    Method
    Description
    static Paging
    Paging.of(int pageIndex, int pageSize)
    Create a Paging that will use the id property for ordering.
    static Paging
    Paging.of(int pageIndex, int pageSize, @Nullable OrderBy<?> orderBy)
    Create a Paging with the given page index size and orderBy.
    static Paging
    Paging.of(int pageIndex, int pageSize, @Nullable String orderByClause)
    Create a Paging with a raw order by clause.
    static Paging
    Paging.ofNone()
    Return a Paging that will not apply any pagination to a query.
    Paging.withOrderBy(String orderByClause)
    Return a Paging using the given order by clause.
    Paging.withPage(int pageIndex)
    Return a Paging using the given page index.
    Methods in io.ebean with parameters of type Paging
    Modifier and Type
    Method
    Description
    QueryBuilder.setPaging(Paging paging)