Package org.hibernate.criterion
Class SubqueryExpression
- java.lang.Object
-
- org.hibernate.criterion.SubqueryExpression
-
- All Implemented Interfaces:
java.io.Serializable,Criterion
- Direct Known Subclasses:
ExistsSubqueryExpression,PropertiesSubqueryExpression,PropertySubqueryExpression,SimpleSubqueryExpression
public abstract class SubqueryExpression extends java.lang.Object implements Criterion
A criterion that involves a subquery- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedSubqueryExpression(java.lang.String op, java.lang.String quantifier, DetachedCriteria dc)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description TypedValue[]getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)Return typed values for all parameters in the rendered SQL fragmentprotected Type[]getTypes()protected abstract java.lang.StringtoLeftSqlString(Criteria criteria, CriteriaQuery outerQuery)java.lang.StringtoSqlString(Criteria criteria, CriteriaQuery criteriaQuery)Render the SQL fragment
-
-
-
Constructor Detail
-
SubqueryExpression
protected SubqueryExpression(java.lang.String op, java.lang.String quantifier, DetachedCriteria dc)
-
-
Method Detail
-
getTypes
protected Type[] getTypes()
-
toLeftSqlString
protected abstract java.lang.String toLeftSqlString(Criteria criteria, CriteriaQuery outerQuery)
-
toSqlString
public java.lang.String toSqlString(Criteria criteria, CriteriaQuery criteriaQuery) throws HibernateException
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
- Throws:
HibernateException- Problem during rendering.
-
getTypedValues
public TypedValue[] getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery) throws HibernateException
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)
- Throws:
HibernateException- Problem determining types.
-
-