|
Spring Data Core | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Pageable | |
|---|---|
| org.springframework.data.domain | Central domain abstractions especially to be used in combination with the Repository abstraction. |
| org.springframework.data.geo | Value types representing geo-spatial concepts. |
| org.springframework.data.querydsl | Querydsl integration support classes. |
| org.springframework.data.repository | Central interfaces for repository abstraction. |
| org.springframework.data.repository.history | API for repositories using historiography. |
| org.springframework.data.repository.query | Support classes to work with query methods. |
| org.springframework.data.web | Integration with Spring MVC. |
| Uses of Pageable in org.springframework.data.domain |
|---|
| Classes in org.springframework.data.domain that implement Pageable | |
|---|---|
class |
AbstractPageRequest
Abstract Java Bean implementation of Pageable. |
class |
PageRequest
Basic Java Bean implementation of Pageable. |
| Methods in org.springframework.data.domain that return Pageable | |
|---|---|
abstract Pageable |
AbstractPageRequest.first()
|
Pageable |
PageRequest.first()
|
Pageable |
Pageable.first()
Returns the Pageable requesting the first page. |
abstract Pageable |
AbstractPageRequest.next()
|
Pageable |
PageRequest.next()
|
Pageable |
Pageable.next()
Returns the Pageable requesting the next Page. |
Pageable |
Slice.nextPageable()
Returns the Pageable to request the next Slice. |
abstract Pageable |
AbstractPageRequest.previous()
Returns the Pageable requesting the previous Page. |
Pageable |
AbstractPageRequest.previousOrFirst()
|
Pageable |
Pageable.previousOrFirst()
Returns the previous Pageable or the first Pageable if the current one already is the first one. |
Pageable |
Slice.previousPageable()
Returns the Pageable to request the previous Slice. |
| Constructors in org.springframework.data.domain with parameters of type Pageable | |
|---|---|
PageImpl(List<T> content,
Pageable pageable,
long total)
Constructor of PageImpl. |
|
SliceImpl(List<T> content,
Pageable pageable,
boolean hasNext)
Creates a new Slice with the given content and Pageable. |
|
| Uses of Pageable in org.springframework.data.geo |
|---|
| Constructors in org.springframework.data.geo with parameters of type Pageable | |
|---|---|
GeoPage(GeoResults<T> results,
Pageable pageable,
long total)
Creates a new GeoPage from the given GeoResults, Pageable and total. |
|
| Uses of Pageable in org.springframework.data.querydsl |
|---|
| Classes in org.springframework.data.querydsl that implement Pageable | |
|---|---|
class |
QPageRequest
Basic Java Bean implementation of Pageable with support for QueryDSL. |
| Methods in org.springframework.data.querydsl that return Pageable | |
|---|---|
Pageable |
QPageRequest.first()
|
Pageable |
QPageRequest.next()
|
Pageable |
QPageRequest.previous()
|
| Methods in org.springframework.data.querydsl with parameters of type Pageable | |
|---|---|
Page<T> |
QueryDslPredicateExecutor.findAll(com.mysema.query.types.Predicate predicate,
Pageable pageable)
Returns a Page of entities matching the given Predicate. |
| Uses of Pageable in org.springframework.data.repository |
|---|
| Methods in org.springframework.data.repository with parameters of type Pageable | |
|---|---|
Page<T> |
PagingAndSortingRepository.findAll(Pageable pageable)
Returns a Page of entities meeting the paging restriction provided in the Pageable object. |
| Uses of Pageable in org.springframework.data.repository.history |
|---|
| Methods in org.springframework.data.repository.history with parameters of type Pageable | |
|---|---|
Page<Revision<N,T>> |
RevisionRepository.findRevisions(ID id,
Pageable pageable)
Returns a Page of revisions for the entity with the given id. |
| Uses of Pageable in org.springframework.data.repository.query |
|---|
| Methods in org.springframework.data.repository.query that return Pageable | |
|---|---|
Pageable |
ParametersParameterAccessor.getPageable()
|
Pageable |
ParameterAccessor.getPageable()
Returns the Pageable of the parameters, if available. |
| Uses of Pageable in org.springframework.data.web |
|---|
| Methods in org.springframework.data.web that return Pageable | |
|---|---|
Pageable |
PageableHandlerMethodArgumentResolver.resolveArgument(MethodParameter methodParameter,
ModelAndViewContainer mavContainer,
NativeWebRequest webRequest,
WebDataBinderFactory binderFactory)
|
| Methods in org.springframework.data.web with parameters of type Pageable | |
|---|---|
void |
PageableHandlerMethodArgumentResolver.setFallbackPageable(Pageable fallbackPageable)
Configures the Pageable to be used as fallback in case no PageableDefault or
PageableDefaults (the latter only supported in legacy mode) can be found at the method parameter to be
resolved. |
|
Spring Data Core | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||