Spring Data Commmons

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.repository Central interfaces for repository abstraction. 
org.springframework.data.repository.query Support classes to work with query methods. 
 

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.
 

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.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.query
 

Methods in org.springframework.data.repository.query that return Pageable
 Pageable SimpleParameterAccessor.getPageable()
          Returns the Pageable of the parameters, if available.
 


Spring Data Commmons

Copyright © 2011. All Rights Reserved.