Package org.hibernate.criterion
Class InExpression
- java.lang.Object
-
- org.hibernate.criterion.InExpression
-
- All Implemented Interfaces:
java.io.Serializable,Criterion
public class InExpression extends java.lang.Object implements Criterion
Constrains the property to a specified list of values- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedInExpression(java.lang.String propertyName, java.lang.Object[] values)Constructs an InExpression
-
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 fragmentjava.lang.StringtoString()
-
-
-
Constructor Detail
-
InExpression
protected InExpression(java.lang.String propertyName, java.lang.Object[] values)Constructs an InExpression- Parameters:
propertyName- The property name to checkvalues- The values to check against- See Also:
Restrictions.in(String, java.util.Collection),Restrictions.in(String, Object...)
-
-
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 overall 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 overall criteria query- Returns:
- The types values (for binding)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-