Package | Description |
---|---|
javax.persistence.criteria |
Java Persistence Criteria API
|
org.hibernate.query.criteria.internal.predicate |
Modifier and Type | Method and Description |
---|---|
Predicate.BooleanOperator |
Predicate.getOperator()
Return the boolean operator for the predicate.
|
static Predicate.BooleanOperator |
Predicate.BooleanOperator.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Predicate.BooleanOperator[] |
Predicate.BooleanOperator.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Predicate.BooleanOperator |
NegatedPredicateWrapper.getOperator() |
Predicate.BooleanOperator |
CompoundPredicate.getOperator() |
Predicate.BooleanOperator |
AbstractSimplePredicate.getOperator() |
static Predicate.BooleanOperator |
CompoundPredicate.reverseOperator(Predicate.BooleanOperator operator) |
Modifier and Type | Method and Description |
---|---|
static Predicate.BooleanOperator |
CompoundPredicate.reverseOperator(Predicate.BooleanOperator operator) |
Constructor and Description |
---|
CompoundPredicate(CriteriaBuilderImpl criteriaBuilder,
Predicate.BooleanOperator operator)
Constructs an empty conjunction or disjunction.
|
CompoundPredicate(CriteriaBuilderImpl criteriaBuilder,
Predicate.BooleanOperator operator,
Expression<Boolean>... expressions)
Constructs a conjunction or disjunction over the given expressions.
|
CompoundPredicate(CriteriaBuilderImpl criteriaBuilder,
Predicate.BooleanOperator operator,
List<Expression<Boolean>> expressions)
Constructs a conjunction or disjunction over the given expressions.
|
Copyright © 2019 JBoss by Red Hat. All rights reserved.