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 Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default JpaPredicateFunction<RE>
andThen(Function<? super javax.persistence.criteria.Predicate,javax.persistence.criteria.Predicate> after)
javax.persistence.criteria.Predicate
apply(javax.persistence.criteria.CriteriaBuilder t, JpaSubqueryProvider u, javax.persistence.criteria.Root<RE> v)
-
-
-
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)
-
-