Uses of Interface
com.bellotapps.webapps_commons.persistence.repository_utils.Slice
-
-
Uses of Slice in com.bellotapps.webapps_commons.persistence.repository_utils
Subinterfaces of Slice in com.bellotapps.webapps_commons.persistence.repository_utils Modifier and Type Interface Description interfacePage<T>An extension of aSlicein which is known the overall amount of data.Classes in com.bellotapps.webapps_commons.persistence.repository_utils that implement Slice Modifier and Type Class Description classAbstractSlice<T>classPageImpl<T>Concrete implementation ofPage.classSliceImpl<T>A concrete implementation of aSlice.Methods in com.bellotapps.webapps_commons.persistence.repository_utils that return Slice Modifier and Type Method Description static <S> Slice<S>Slice. empty()Creates an emptySlice.static <S> Slice<S>Slice. empty(int number, int size, SortingData sortingData, boolean hasNext)Creates an emptySlice, using the given paging and sorting information.static <S> Slice<S>Slice. emptyUnsorted(int number, int size, boolean hasNext)Creates an empty unsortedSlice, using the given paging information.<U> Slice<U>Slice. map(java.util.function.Function<T,U> mapper)Maps the content of this slice according to the givenmapper.<U> Slice<U>SliceImpl. map(java.util.function.Function<T,U> mapper)static <S> Slice<S>Slice. of(int number, int size, SortingData sortingData, java.util.List<S> content, boolean hasNext)Creates aSlice.static <S> Slice<S>Slice. ofUnsorted(int number, int size, java.util.List<S> content, boolean hasNext)Creates an unsortedSlice.
-