Interface JpaPredicateFunction<RE>

  • 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 JpaPredicateFunction<RE>
    Author:
    Alexander Schwartz
    • Method Detail

      • apply

        javax.persistence.criteria.Predicate apply​(javax.persistence.criteria.CriteriaBuilder t,
                                                   JpaSubqueryProvider u,
                                                   javax.persistence.criteria.Root<RE> v)
      • andThen

        default JpaPredicateFunction<RE> andThen​(Function<? super javax.persistence.criteria.Predicate,​javax.persistence.criteria.Predicate> after)