Spring Data Core

Uses of Interface
org.springframework.data.domain.Pageable

Packages that use Pageable
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. 
 

Uses of Pageable in org.springframework.data.domain
 

Classes in org.springframework.data.domain that implement Pageable
 class PageRequest
          Basic Java Bean implementation of Pageable.
 

Methods in org.springframework.data.domain that return Pageable
 Pageable PageRequest.first()
           
 Pageable Pageable.first()
          Returns the Pageable requesting the first page.
 Pageable PageRequest.next()
           
 Pageable Pageable.next()
          Returns the Pageable requesting the next Page.
 Pageable PageImpl.nextPageable()
           
 Pageable Page.nextPageable()
          Returns the Pageable to request the next Page.
 Pageable PageRequest.previousOrFirst()
           
 Pageable Pageable.previousOrFirst()
          Returns the previous Pageable or the first Pageable if the current one already is the first one.
 Pageable PageImpl.previousPageable()
           
 Pageable Page.previousPageable()
          Returns the Pageable to request the previous page.
 

Constructors in org.springframework.data.domain with parameters of type Pageable
PageImpl(List<T> content, Pageable pageable, long total)
          Constructor of PageImpl.
 

Uses of Pageable in org.springframework.data.querydsl
 

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.
 void PageableArgumentResolver.setFallbackPageable(Pageable fallbackPageable)
          Deprecated. Setter to configure a fallback instance of Pageable that is being used to back missing parameters.
 


Spring Data Core

Copyright © 2011-2013-2013 Pivotal. All Rights Reserved.