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 aJpaModelCriteriaBuilderto be able to create subqueries. Depending on the caller this will delegate of an instance of aCriteriaDeleteor aCriteriaQueryas 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)
-
-