Interface JpaSubqueryProvider
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface JpaSubqueryProvider
This is handed down to aJpaModelCriteriaBuilder
to be able to create subqueries. Depending on the caller this will delegate of an instance of aCriteriaDelete
or aCriteriaQuery
as necessary.- Author:
- Alexander Schwartz
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <U> javax.persistence.criteria.Subquery<U>
subquery(Class<U> type)
-
-
-
Method Detail
-
subquery
<U> javax.persistence.criteria.Subquery<U> subquery(Class<U> type)
-
-