All Methods Static Methods Concrete Methods
| Modifier and Type |
Method and Description |
static <E,T> Page<T> |
fromList(List<E> list,
int pageNumber,
int pageSize,
Function<E,T> converter) |
static <T> Page<T> |
fromList(List<T> list,
int pageNumber,
int pageSize) |
static <E,T> Page<T> |
fromSet(Set<E> set,
int pageNumber,
int pageSize,
Function<E,T> converter) |
static <E,T> Page<T> |
fromSet(Set<E> set,
int pageNumber,
int pageSize,
Predicate<E> filter,
Function<E,T> converter) |
static <T> Page<T> |
fromSet(Set<T> set,
int pageNumber,
int pageSize) |