Uses of Interface
com.bellotapps.webapps_commons.persistence.repository_utils.paging_and_sorting.Page
-
Packages that use Page Package Description com.bellotapps.webapps_commons.persistence.repository_utils.paging_and_sorting com.bellotapps.webapps_commons.persistence.repository_utils.repositories -
-
Uses of Page in com.bellotapps.webapps_commons.persistence.repository_utils.paging_and_sorting
Classes in com.bellotapps.webapps_commons.persistence.repository_utils.paging_and_sorting that implement Page Modifier and Type Class Description classPageImpl<T>Concrete implementation ofPage.Methods in com.bellotapps.webapps_commons.persistence.repository_utils.paging_and_sorting that return Page Modifier and Type Method Description static <S> Page<S>Page. empty()Creates an emptyPage.static <S> Page<S>Page. empty(int number, int size, SortingData sortingData, long totalElements)Creates an emptyPage, using the given paging and sorting information.static <S> Page<S>Page. emptyUnsorted(int number, int size, long totalElements)Creates an empty unsortedPage, using the given paging information.<U> Page<U>Page. map(java.util.function.Function<T,U> mapper)Maps the content of this page according to the givenmapper.<U> Page<U>PageImpl. map(java.util.function.Function<T,U> mapper)static <S> Page<S>Page. of(int number, int size, SortingData sortingData, java.util.List<S> content, long totalElements)Creates aPage.static <S> Page<S>Page. ofUnsorted(int number, int size, java.util.List<S> content, long totalElements)Creates an unsortedPage. -
Uses of Page in com.bellotapps.webapps_commons.persistence.repository_utils.repositories
Methods in com.bellotapps.webapps_commons.persistence.repository_utils.repositories that return Page Modifier and Type Method Description Page<E>PagingRepository. findAll(PagingRequest pagingRequest)Returns aPageof entities according to the givenpagingRequest.
-