|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Sort | |
|---|---|
| org.synyx.hades.dao | Generic DAO interfaces. |
| org.synyx.hades.dao.orm | DAO implementations based on JPA and various implementation providers. |
| org.synyx.hades.dao.query | Package for the query abstraction. |
| org.synyx.hades.domain | Interfaces for domain classes. |
| Uses of Sort in org.synyx.hades.dao |
|---|
| Methods in org.synyx.hades.dao with parameters of type Sort | |
|---|---|
java.util.List<T> |
GenericDao.readAll(Sort sort)
Returns all entities sorted by the given options. |
java.util.List<T> |
ExtendedGenericDao.readByExample(Sort sort,
java.util.Collection<T> examples)
Returns all entites matching the given criteria sorted by the given sort options. |
java.util.List<T> |
ExtendedGenericDao.readByExample(Sort sort,
T... examples)
Returns all entites matching the given criteria sorted by the given sort options. |
| Uses of Sort in org.synyx.hades.dao.orm |
|---|
| Methods in org.synyx.hades.dao.orm with parameters of type Sort | |
|---|---|
java.util.List<T> |
GenericJpaDao.readAll(Sort sort)
|
java.util.List<T> |
GenericHibernateJpaDao.readByExample(Sort sort,
java.util.Collection<T> examples)
|
java.util.List<T> |
GenericEclipseLinkJpaDao.readByExample(Sort sort,
java.util.Collection<T> examples)
|
java.util.List<T> |
AbstractExtendedGenericJpaDao.readByExample(Sort sort,
T... examples)
|
| Uses of Sort in org.synyx.hades.dao.query |
|---|
| Methods in org.synyx.hades.dao.query with parameters of type Sort | |
|---|---|
static java.lang.String |
QueryUtils.applySorting(java.lang.String query,
Sort sort)
Adds order by clause to the JPQL query. |
static java.lang.String |
QueryUtils.applySorting(java.lang.String query,
Sort sort,
java.lang.String alias)
Adds order by clause to the JPQL query. |
| Uses of Sort in org.synyx.hades.domain |
|---|
| Methods in org.synyx.hades.domain that return Sort | |
|---|---|
Sort |
PageRequest.getSort()
|
Sort |
PageImpl.getSort()
|
Sort |
Pageable.getSort()
Returns the sorting parameters. |
Sort |
Page.getSort()
Returns the sorting parameters for the page. |
Sort |
Sort.with(Order order)
Deprecated. user Sort.Property.with(Order) instead |
Sort |
Sort.withProperties(java.lang.String... properties)
Deprecated. use Sort.Property.withProperties(String...) instead |
Sort |
Sort.Property.withProperties(java.lang.String... properties)
Returns a new Sort instance for the given properties. |
| Constructors in org.synyx.hades.domain with parameters of type Sort | |
|---|---|
PageRequest(int page,
int size,
Sort sort)
Creates a new PageRequest with sort parameters applied. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||