Package org.hibernate.criterion
Class NotExpression
- java.lang.Object
-
- org.hibernate.criterion.NotExpression
-
- All Implemented Interfaces:
java.io.Serializable
,Criterion
public class NotExpression extends java.lang.Object implements Criterion
A criterion that is a wrapper for another, negating the wrapped one.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
NotExpression(Criterion criterion)
Constructs a NotExpression
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TypedValue[]
getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)
Return typed values for all parameters in the rendered SQL fragmentjava.lang.String
toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)
Render the SQL fragmentjava.lang.String
toString()
-
-
-
Constructor Detail
-
NotExpression
protected NotExpression(Criterion criterion)
Constructs a NotExpression- Parameters:
criterion
- The expression to wrap and negate- See Also:
Restrictions.not(org.hibernate.criterion.Criterion)
-
-
Method Detail
-
toSqlString
public java.lang.String toSqlString(Criteria criteria, CriteriaQuery criteriaQuery) throws HibernateException
Description copied from interface:Criterion
Render the SQL fragment- Specified by:
toSqlString
in interfaceCriterion
- Parameters:
criteria
- The local criteriacriteriaQuery
- The overal criteria query- Returns:
- The generated SQL fragment
- Throws:
HibernateException
- Problem during rendering.
-
getTypedValues
public TypedValue[] getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery) throws HibernateException
Description copied from interface:Criterion
Return typed values for all parameters in the rendered SQL fragment- Specified by:
getTypedValues
in interfaceCriterion
- Parameters:
criteria
- The local criteriacriteriaQuery
- The overal criteria query- Returns:
- The types values (for binding)
- Throws:
HibernateException
- Problem determining types.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-