Interface SubqueryBuilder<T>
- All Superinterfaces:
QueryBuilderBase<SubqueryBuilder<T>,jakarta.persistence.criteria.Subquery<T>>
- All Known Implementing Classes:
SubqueryBuilderImpl
public interface SubqueryBuilder<T>
extends QueryBuilderBase<SubqueryBuilder<T>,jakarta.persistence.criteria.Subquery<T>>
A query builder for
Subquery, which can be used in conditions.
Instances of this class are returned from PredicateBuilder.SubqueryFactory.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionsetSelection(jakarta.persistence.criteria.Expression<T> selection) Methods inherited from interface ch.tocco.nice2.persist.core.api.hibernate.query.builder.QueryBuilderBase
addParameter, build, getCriteriaBuilder, getPredicates, getQueryRoot, getSubqueryFactory, where, where, where, where, where, whereInsecure, whereInsecure, whereInsecure
-
Method Details
-
setSelection
- Parameters:
selection- the selection that should be returned from the subquery.
-