In
Interface used to build in predicates.
- Since:
- JPA 2.0
Public Methods
- Return:
- expression
- Since:
- JPA 2.0
Returns empty list if there are no top-level conjuncts or disjuncts of the predicate. Modifications to the list do not affect the query.
- Return:
- list of boolean expressions forming the predicate
- Inherited from:
Predicate
- Since:
- JPA 2.0
Predicate.BooleanOperator getOperator()
If the predicate is simple, this is
AND
. - Return:
- boolean operator for the predicate
- Inherited from:
Predicate
- Since:
- JPA 2.0
boolean isNegated()
- Return:
- boolean indicating if the predicate is a negated predicate
- Inherited from:
Predicate
- Since:
- JPA 2.0
CriteriaBuilder.In<T> value(Expression<?extendsT> value)
- Parameters:
value
- expression
- Return:
- in predicate
- Since:
- JPA 2.0
CriteriaBuilder.In<T> value(T value)
- Parameters:
value
- value
- Return:
- in predicate
- Since:
- JPA 2.0