|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Specification | |
|---|---|
| org.synyx.hades.dao | |
| org.synyx.hades.dao.orm | |
| org.synyx.hades.domain | |
| Uses of Specification in org.synyx.hades.dao |
|---|
| Methods in org.synyx.hades.dao with parameters of type Specification | |
|---|---|
java.util.List<T> |
GenericDao.readAll(Specification<T> spec)
Returns all entities matching the given Specification. |
Page<T> |
GenericDao.readAll(Specification<T> spec,
Pageable pageable)
Returns a Page of entities matching the given
Specification. |
| Uses of Specification in org.synyx.hades.dao.orm |
|---|
| Methods in org.synyx.hades.dao.orm with parameters of type Specification | |
|---|---|
java.util.List<T> |
GenericJpaDao.readAll(Specification<T> spec)
|
Page<T> |
GenericJpaDao.readAll(Specification<T> spec,
Pageable pageable)
|
| Uses of Specification in org.synyx.hades.domain |
|---|
| Classes in org.synyx.hades.domain that implement Specification | |
|---|---|
class |
Specifications<T>
Helper class to easily combine Specification instances. |
| Methods in org.synyx.hades.domain with parameters of type Specification | ||
|---|---|---|
Specifications<T> |
Specifications.and(Specification<T> other)
ANDs the given Specification to the current one. |
|
static
|
Specifications.not(Specification<T> spec)
Negates the given Specification. |
|
Specifications<T> |
Specifications.or(Specification<T> other)
ORs the given specification to the current one. |
|
static
|
Specifications.where(Specification<T> spec)
Simple static factory method to add some syntactic sugar around a Specification. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||