Class AbstractNegatableSqmPredicate
java.lang.Object
org.hibernate.query.sqm.tree.AbstractSqmNode
org.hibernate.query.sqm.tree.jpa.AbstractJpaTupleElement<Boolean>
org.hibernate.query.sqm.tree.jpa.AbstractJpaSelection<Boolean>
org.hibernate.query.sqm.tree.expression.AbstractSqmExpression<Boolean>
org.hibernate.query.sqm.tree.predicate.AbstractSqmPredicate
org.hibernate.query.sqm.tree.predicate.AbstractNegatableSqmPredicate
- All Implemented Interfaces:
Expression<Boolean>, Predicate, Selection<Boolean>, TupleElement<Boolean>, Serializable, JpaCriteriaNode, JpaExpression<Boolean>, JpaPredicate, JpaSelection<Boolean>, JpaTupleElement<Boolean>, SqmExpression<Boolean>, SqmNegatablePredicate, SqmPredicate, SqmSelectableNode<Boolean>, SqmCacheable, SqmExpressibleAccessor<Boolean>, SqmNode, SqmTypedNode<Boolean>, SqmVisitableNode
- Direct Known Subclasses:
SqmBetweenPredicate, SqmBooleanExpressionPredicate, SqmComparisonPredicate, SqmEmptinessPredicate, SqmExistsPredicate, SqmInListPredicate, SqmInSubQueryPredicate, SqmLikePredicate, SqmMemberOfPredicate, SqmNullnessPredicate, SqmTruthnessPredicate
public abstract class AbstractNegatableSqmPredicate
extends AbstractSqmPredicate
implements SqmNegatablePredicate
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface Predicate
Predicate.BooleanOperator -
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionAbstractNegatableSqmPredicate(boolean negated, NodeBuilder nodeBuilder) AbstractNegatableSqmPredicate(@Nullable SqmBindableType<Boolean> type, boolean negated, NodeBuilder nodeBuilder) AbstractNegatableSqmPredicate(NodeBuilder nodeBuilder) -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract SqmNegatablePredicatebooleanIs this predicate (currently) negated?voidnegate()Apply an external negation.not()Methods inherited from class AbstractSqmPredicate
getExpressible, getExpressions, getJavaTypeDescriptor, getNodeJavaType, getNodeType, getOperatorMethods inherited from class AbstractSqmExpression
applyInferableType, as, cast, equalTo, equalTo, in, in, in, in, internalApplyInferableType, isNotNull, isNull, nodeBuilder, notEqualTo, notEqualToMethods inherited from class AbstractJpaSelection
alias, getSelectionItems, isCompoundSelectionMethods inherited from class AbstractJpaTupleElement
copyTo, getAlias, setAlias, setExpressibleTypeMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface JpaSelection
alias, getCompoundSelectionItems, getSelectionItemsMethods inherited from interface JpaTupleElement
getJavaType, getJavaTypeName, isEnumMethods inherited from interface Predicate
getExpressions, getOperatorMethods inherited from interface Selection
isCompoundSelectionMethods inherited from interface SqmCacheable
cacheHashCode, isCompatibleMethods inherited from interface SqmExpression
applyInferableType, as, asBigDecimal, asBigInteger, asDouble, asFloat, asInteger, asLong, asString, cast, castAs, equalTo, equalTo, in, in, in, in, isNotNull, isNull, notEqualTo, notEqualTo, visitSubSelectableNodesMethods inherited from interface SqmNode
asLoggableText, nodeBuilderMethods inherited from interface SqmPredicate
copy, getExpressible, getJavaTypeDescriptor, getNodeJavaType, getNodeTypeMethods inherited from interface SqmSelectableNode
getTupleLengthMethods inherited from interface SqmVisitableNode
accept, appendHqlString, toHqlStringMethods inherited from interface TupleElement
getAlias
-
Constructor Details
-
AbstractNegatableSqmPredicate
-
AbstractNegatableSqmPredicate
-
AbstractNegatableSqmPredicate
public AbstractNegatableSqmPredicate(@Nullable SqmBindableType<Boolean> type, boolean negated, NodeBuilder nodeBuilder)
-
-
Method Details
-
isNegated
public boolean isNegated()Description copied from interface:SqmNegatablePredicateIs this predicate (currently) negated?- Specified by:
isNegatedin interfacePredicate- Specified by:
isNegatedin interfaceSqmNegatablePredicate- Returns:
trueif we have a negated form currently
-
negate
public void negate()Description copied from interface:SqmNegatablePredicateApply an external negation. Called when we encounter aNOTgrouping.For example, for
not(x is null)we build theSqmNullnessPredicateand then call its negate method which results inx is not null.Can be applied nested as well. For example,
not(not(x is null))becomesx is nullbecause the double-negative cancel each other out.- Specified by:
negatein interfaceSqmNegatablePredicate
-
createNegatedNode
-
not
- Specified by:
notin interfaceJpaPredicate- Specified by:
notin interfacePredicate- Specified by:
notin interfaceSqmPredicate
-