public interface SearchCriteriaBuilder
Modifier and Type | Method and Description |
---|---|
SearchCriteriaBuilder |
add(SearchCriterion criterion)
Adds restriction to the criteria.
|
SearchCriteriaBuilder |
addOrder(SearchOrder order)
Adds order to the criteria.
|
SearchCriteriaBuilder |
createAlias(String association,
String alias,
JoinType joinType)
Create alias for the association to the criteria using the specified join-type.
|
SearchCriteriaBuilder |
createCriteria(String association,
String alias)
Create a new SearchCriteriaBuilder, "rooted" at the associated entity, assigning the given alias and using the inner join.
|
SearchCriteriaBuilder |
createCriteria(String association,
String alias,
JoinType joinType)
Create a new SearchCriteriaBuilder, "rooted" at the associated entity, assigning the given alias and using the specified
join-type.
|
boolean |
existsAliasForAssociation(String association) |
String |
getAliasForAssociation(String association) |
SearchResult |
list()
Finds entities using this criteria.
|
SearchCriteriaBuilder |
setCacheable(boolean cacheable)
Enable caching of this query result, provided query caching is enabled for the underlying session factory.
|
SearchCriteriaBuilder |
setFirstResult(int firstResult)
Sets the first result, by default the first result is equal to zero.
|
SearchCriteriaBuilder |
setMaxResults(int maxResults)
Sets the max results, by default there is no limit.
|
SearchCriteriaBuilder |
setProjection(SearchProjection projection)
Adds projection to the criteria.
|
Entity |
uniqueResult()
Finds unique entity.
|
SearchCriteriaBuilder add(SearchCriterion criterion)
criterion
- criterionSearchCriteriaBuilder addOrder(SearchOrder order)
order
- orderSearchCriteriaBuilder createAlias(String association, String alias, JoinType joinType)
association
- associationalias
- aliasjoinType
- the type of join to use. If given joinType is not specified then JoinType.INNER
will be used.SearchCriteriaBuilder createCriteria(String association, String alias)
association
- associationalias
- aliasSearchCriteriaBuilder createCriteria(String association, String alias, JoinType joinType)
association
- associationalias
- aliasjoinType
- the type of join to use. If given joinType is not specified then JoinType.INNER
will be used.boolean existsAliasForAssociation(String association)
SearchResult list()
SearchCriteriaBuilder setCacheable(boolean cacheable)
cacheable
- SearchCriteriaBuilder setFirstResult(int firstResult)
firstResult
- first resultSearchCriteriaBuilder setMaxResults(int maxResults)
maxResults
- max resultsSearchCriteriaBuilder setProjection(SearchProjection projection)
projection
- projectionEntity uniqueResult()
Copyright © 2010-2025 Qcadoo Limited