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 a JpaModelCriteriaBuilder to be able to create subqueries. Depending on the caller this will delegate of an instance of a CriteriaDelete or a CriteriaQuery as necessary.
    Author:
    Alexander Schwartz
    • Method Detail

      • subquery

        <U> javax.persistence.criteria.Subquery<U> subquery​(Class<U> type)