Package org.hibernate.criterion
Class ForeignKeyNullExpression
- java.lang.Object
-
- org.hibernate.criterion.ForeignKeyNullExpression
-
- All Implemented Interfaces:
java.io.Serializable,Criterion
public class ForeignKeyNullExpression extends java.lang.Object implements Criterion
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ForeignKeyNullExpression(java.lang.String associationPropertyName)ForeignKeyNullExpression(java.lang.String associationPropertyName, boolean negated)
-
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.StringtoSqlString(Criteria criteria, CriteriaQuery criteriaQuery)Render the SQL fragment
-
-
-
Method Detail
-
toSqlString
public java.lang.String toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)
Description copied from interface:CriterionRender the SQL fragment- Specified by:
toSqlStringin interfaceCriterion- Parameters:
criteria- The local criteriacriteriaQuery- The overal criteria query- Returns:
- The generated SQL fragment
-
getTypedValues
public TypedValue[] getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)
Description copied from interface:CriterionReturn typed values for all parameters in the rendered SQL fragment- Specified by:
getTypedValuesin interfaceCriterion- Parameters:
criteria- The local criteriacriteriaQuery- The overal criteria query- Returns:
- The types values (for binding)
-
-