Uses of Interface
org.synyx.hades.domain.Pageable

Packages that use Pageable
org.synyx.hades.dao Generic DAO interfaces. 
org.synyx.hades.dao.orm DAO implementations based on JPA and various implementation providers. 
org.synyx.hades.domain Interfaces for domain classes. 
 

Uses of Pageable in org.synyx.hades.dao
 

Methods in org.synyx.hades.dao with parameters of type Pageable
 Page<T> GenericDao.readAll(Pageable pageable)
          Returns a paged list of entities meeting the paging restriction provided in the Pageable object.
 Page<T> ExtendedGenericDao.readByExample(Pageable pageable, java.util.Collection<T> examples)
          Allows pageable access to all entities matching the given examples.
 Page<T> ExtendedGenericDao.readByExample(Pageable pageable, T... examples)
          Allows pageable access to all entities matching the given examples.
 

Uses of Pageable in org.synyx.hades.dao.orm
 

Methods in org.synyx.hades.dao.orm with parameters of type Pageable
 Page<T> GenericJpaDao.readAll(Pageable pageable)
           
 Page<T> GenericHibernateJpaDao.readByExample(Pageable pageable, java.util.Collection<T> examples)
           
 Page<T> GenericEclipseLinkJpaDao.readByExample(Pageable pageable, java.util.Collection<T> examples)
           
 Page<T> AbstractExtendedGenericJpaDao.readByExample(Pageable pageable, T... examples)
           
protected  Page<T> GenericJpaDao.readPage(Pageable pageable, java.lang.String query)
          Reads a page of entities for the given JPQL query.
 

Uses of Pageable in org.synyx.hades.domain
 

Classes in org.synyx.hades.domain that implement Pageable
 class PageRequest
          Basic Java Bean implementation of Pageable.
 

Constructors in org.synyx.hades.domain with parameters of type Pageable
PageImpl(java.util.List<T> content, Pageable pageable, long total)
          Constructor of PageImpl.
 



Copyright © 2009-2010 Synyx GmbH & Co. KG. All Rights Reserved.