|
Spring Data JPA | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface JpaSpecificationExecutor<T>
Interface to allow execution of Specifications based on the JPA criteria API.
| Method Summary | |
|---|---|
long |
count(Specification<T> spec)
Returns the number of instances that the given Specification will return. |
List<T> |
findAll(Specification<T> spec)
Returns all entities matching the given Specification. |
Page<T> |
findAll(Specification<T> spec,
Pageable pageable)
Returns a Page of entities matching the given Specification. |
List<T> |
findAll(Specification<T> spec,
Sort sort)
Returns all entities matching the given Specification and Sort. |
T |
findOne(Specification<T> spec)
Returns a single entity matching the given Specification. |
| Method Detail |
|---|
T findOne(Specification<T> spec)
Specification.
spec -
List<T> findAll(Specification<T> spec)
Specification.
spec -
Page<T> findAll(Specification<T> spec,
Pageable pageable)
Page of entities matching the given Specification.
spec - pageable -
List<T> findAll(Specification<T> spec,
Sort sort)
Specification and Sort.
spec - sort -
long count(Specification<T> spec)
Specification will return.
spec - the Specification to count instances for
|
Spring Data JPA | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||