Spring Data Commons

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

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

Uses of Page in org.springframework.data.domain
 

Classes in org.springframework.data.domain that implement Page
 class PageImpl<T>
          Basic Page implementation.
 

Uses of Page in org.springframework.data.querydsl
 

Methods in org.springframework.data.querydsl that return Page
 Page<T> QueryDslPredicateExecutor.findAll(com.mysema.query.types.Predicate predicate, Pageable pageable)
          Returns a Page of entities matching the given Predicate.
 

Uses of Page in org.springframework.data.repository
 

Methods in org.springframework.data.repository that return Page
 Page<T> PagingAndSortingRepository.findAll(Pageable pageable)
          Returns a Page of entities meeting the paging restriction provided in the Pageable object.
 

Uses of Page in org.springframework.data.repository.history
 

Methods in org.springframework.data.repository.history that return Page
 Page<Revision<N,T>> RevisionRepository.findRevisions(ID id, Pageable pageable)
          Returns a Page of revisions for the entity with the given id.
 


Spring Data Commons

Copyright © 2012. All Rights Reserved.