Class AbstractPredicate
- java.lang.Object
-
- org.hibernate.sql.ast.tree.predicate.AbstractPredicate
-
- All Implemented Interfaces:
DomainResultProducer<Boolean>,SqlSelectionProducer,Expression,Predicate,SqlAstNode
- Direct Known Subclasses:
BetweenPredicate,BooleanExpressionPredicate,InArrayPredicate,InListPredicate,InSubQueryPredicate,LikePredicate,NullnessPredicate,ThruthnessPredicate
public abstract class AbstractPredicate extends Object implements Predicate
-
-
Constructor Summary
Constructors Constructor Description AbstractPredicate(JdbcMappingContainer expressionType)AbstractPredicate(JdbcMappingContainer expressionType, boolean negated)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JdbcMappingContainergetExpressionType()The type for this expressionbooleanisEmpty()booleanisNegated()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.sql.ast.tree.expression.Expression
createDomainResultSqlSelection, createSqlSelection, getColumnReference
-
Methods inherited from interface org.hibernate.sql.ast.tree.predicate.Predicate
applySqlSelections, createDomainResult
-
Methods inherited from interface org.hibernate.sql.ast.tree.SqlAstNode
accept
-
-
-
-
Constructor Detail
-
AbstractPredicate
public AbstractPredicate(JdbcMappingContainer expressionType)
-
AbstractPredicate
public AbstractPredicate(JdbcMappingContainer expressionType, boolean negated)
-
-
Method Detail
-
isNegated
public boolean isNegated()
-
getExpressionType
public JdbcMappingContainer getExpressionType()
Description copied from interface:ExpressionThe type for this expression- Specified by:
getExpressionTypein interfaceExpression
-
-