Package | Description |
---|---|
org.springframework.data.domain |
Central domain abstractions especially to be used in combination with the
Repository abstraction. |
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.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractPageRequest
Abstract Java Bean implementation of
Pageable . |
class |
PageRequest
Basic Java Bean implementation of
Pageable . |
Modifier and Type | Method and Description |
---|---|
Pageable |
PageRequest.first() |
Pageable |
Pageable.first()
Returns the
Pageable requesting the first page. |
abstract Pageable |
AbstractPageRequest.first() |
Pageable |
PageRequest.next() |
Pageable |
Pageable.next()
|
abstract Pageable |
AbstractPageRequest.next() |
Pageable |
PageImpl.nextPageable() |
Pageable |
Page.nextPageable()
|
abstract Pageable |
AbstractPageRequest.previous()
|
Pageable |
Pageable.previousOrFirst()
|
Pageable |
AbstractPageRequest.previousOrFirst() |
Pageable |
PageImpl.previousPageable() |
Pageable |
Page.previousPageable()
Returns the
Pageable to request the previous page. |
Constructor and Description |
---|
PageImpl(List<T> content,
Pageable pageable,
long total)
Constructor of
PageImpl . |
Modifier and Type | Class and Description |
---|---|
class |
QPageRequest
Basic Java Bean implementation of
Pageable with support for QueryDSL. |
Modifier and Type | Method and Description |
---|---|
Pageable |
QPageRequest.first() |
Pageable |
QPageRequest.next() |
Pageable |
QPageRequest.previous() |
Modifier and Type | Method and Description |
---|---|
Page<T> |
QueryDslPredicateExecutor.findAll(com.mysema.query.types.Predicate predicate,
Pageable pageable)
Returns a
Page of entities matching the given Predicate . |
Modifier and Type | Method and Description |
---|---|
Page<T> |
PagingAndSortingRepository.findAll(Pageable pageable)
Returns a
Page of entities meeting the paging restriction provided in the Pageable object. |
Modifier and Type | Method and Description |
---|---|
Page<Revision<N,T>> |
RevisionRepository.findRevisions(ID id,
Pageable pageable)
Returns a
Page of revisions for the entity with the given id. |
Modifier and Type | Method and Description |
---|---|
Pageable |
ParametersParameterAccessor.getPageable() |
Pageable |
ParameterAccessor.getPageable()
Returns the
Pageable of the parameters, if available. |
Modifier and Type | Method and Description |
---|---|
Pageable |
PageableHandlerMethodArgumentResolver.resolveArgument(MethodParameter methodParameter,
ModelAndViewContainer mavContainer,
NativeWebRequest webRequest,
WebDataBinderFactory binderFactory) |
Modifier and Type | Method and Description |
---|---|
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. |
void |
PageableArgumentResolver.setFallbackPageable(Pageable fallbackPageable)
Deprecated.
Setter to configure a fallback instance of
Pageable that is being used to back missing parameters. |
Copyright © 2011-2014-2014 Pivotal. All Rights Reserved.