| Package | Description |
|---|---|
| com.avaje.ebean |
Core API (see Ebean and EbeanServer).
|
| Modifier and Type | Method and Description |
|---|---|
PagedList<T> |
Query.findPagedList()
Return a PagedList for this query using firstRow and maxRows.
|
PagedList<T> |
ExpressionList.findPagedList()
Return a PagedList for this query using firstRow and maxRows.
|
PagedList<T> |
Model.Find.findPagedList(int pageIndex,
int pageSize)
Return a PagedList of all entities of the given type (use where() to specify predicates as
needed).
|
PagedList<T> |
Query.findPagedList(int pageIndex,
int pageSize)
Return a PagedList for this query using pageIndex and pageSize.
|
PagedList<T> |
ExpressionList.findPagedList(int pageIndex,
int pageSize)
Return a PagedList for this query using pageIndex and pageSize.
|
<T> PagedList<T> |
EbeanServer.findPagedList(Query<T> query,
Transaction transaction)
Return a PagedList for this query using firstRow and maxRows.
|
<T> PagedList<T> |
EbeanServer.findPagedList(Query<T> query,
Transaction transaction,
int pageIndex,
int pageSize)
Return a PagedList for this query using pageIndex and pageSize.
|
Copyright © 2016. All rights reserved.