| Package | Description |
|---|---|
| org.oncoblocks.centromere.core.repository |
| Modifier and Type | Method and Description |
|---|---|
QueryCriteria |
QueryParameterDescriptor.createQueryCriteria(Object value) |
| Modifier and Type | Method and Description |
|---|---|
List<QueryCriteria> |
QueryCriteriaBuilder.build() |
| Modifier and Type | Method and Description |
|---|---|
long |
RepositoryOperations.count(Iterable<QueryCriteria> queryCriterias)
Returns a count of all records that satify the requested criteria.
|
Iterable<Object> |
RepositoryOperations.distinct(String field,
Iterable<QueryCriteria> queryCriterias)
Returns a unsorted list of distinct values of the requested field, filtered using a
QueryCriteria
based query. |
Iterable<T> |
RepositoryOperations.find(Iterable<QueryCriteria> queryCriterias)
Searches for all records that satisfy the requested criteria.
|
org.springframework.data.domain.Page<T> |
RepositoryOperations.find(Iterable<QueryCriteria> queryCriterias,
org.springframework.data.domain.Pageable pageable)
Searches for all records that satisfy the requested criteria, and returns them as a paged
collection.
|
Iterable<T> |
RepositoryOperations.find(Iterable<QueryCriteria> queryCriterias,
org.springframework.data.domain.Sort sort)
Searches for all records that satisfy the requested criteria, and returns them in the
requested order.
|
Copyright © 2016. All rights reserved.