Package org.hibernate.criterion
Class IlikeExpression
- java.lang.Object
-
- org.hibernate.criterion.IlikeExpression
-
- All Implemented Interfaces:
Serializable,Criterion
@Deprecated public class IlikeExpression extends Object implements Criterion
Deprecated.PreferLikeExpressionwhich now has case-insensitivity capability.A case-insensitive "like".- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedIlikeExpression(String propertyName, Object value)Deprecated.protectedIlikeExpression(String propertyName, String value, MatchMode matchMode)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description TypedValue[]getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)Deprecated.Return typed values for all parameters in the rendered SQL fragmentStringtoSqlString(Criteria criteria, CriteriaQuery criteriaQuery)Deprecated.Render the SQL fragmentStringtoString()Deprecated.
-
-
-
Method Detail
-
toSqlString
public String toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)
Deprecated.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)
Deprecated.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)
-
-