Uses of Record Class
st.orm.Pageable
Packages that use Pageable
-
Uses of Pageable in st.orm
Modifier and TypeMethodDescriptionPageable.next()Returns a pageable request for the next page, preserving sort orders.Page.nextPageable()Returns thePageablefor the next page, preserving sort orders.static PageablePageable.of(int pageNumber, int pageSize) Creates a pageable request for the given page number and page size without sort orders.static PageablePageable.ofSize(int pageSize) Creates a pageable request for the first page with the given page size.Page.pageable()Returns the value of thepageablerecord component.Pageable.previous()Returns a pageable request for the previous page, or the first page if already on page 0.Page.previousPageable()Returns thePageablefor the previous page, or the first page if already on page 0.Returns a new pageable with an ascending sort order appended for the given field.Pageable.sortByDescending(Metamodel<?, ?> field) Returns a new pageable with a descending sort order appended for the given field. -
Uses of Pageable in st.orm.repository
Methods in st.orm.repository with parameters of type PageableModifier and TypeMethodDescriptionReturns a page of entities using offset-based pagination.Returns a page of projections using offset-based pagination.Returns a page of entity refs using offset-based pagination.Returns a page of projection refs using offset-based pagination. -
Uses of Pageable in st.orm.template
Methods in st.orm.template with parameters of type Pageable