Uses of Class
org.hibernate.criterion.MatchMode
-
Packages that use MatchMode Package Description org.hibernate.criterion org.hibernate.envers.query.criteria -
-
Uses of MatchMode in org.hibernate.criterion
Methods in org.hibernate.criterion that return MatchMode Modifier and Type Method Description static MatchMode
MatchMode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MatchMode[]
MatchMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate.criterion with parameters of type MatchMode Modifier and Type Method Description Example
Example. enableLike(MatchMode matchMode)
Use the "like" operator for all string-valued propertiesstatic Criterion
Restrictions. ilike(java.lang.String propertyName, java.lang.String value, MatchMode matchMode)
A case-insensitive "like" (similar to Postgres ilike operator) using the provided match modeSimpleExpression
Property. like(java.lang.String value, MatchMode matchMode)
Creates a LIKE restriction for this propertystatic SimpleExpression
Restrictions. like(java.lang.String propertyName, java.lang.String value, MatchMode matchMode)
Apply a "like" constraint to the named property using the provided match modeConstructors in org.hibernate.criterion with parameters of type MatchMode Constructor Description IlikeExpression(java.lang.String propertyName, java.lang.String value, MatchMode matchMode)
Deprecated.LikeExpression(java.lang.String propertyName, java.lang.String value, MatchMode matchMode)
LikeExpression(java.lang.String propertyName, java.lang.String value, MatchMode matchMode, java.lang.Character escapeChar, boolean ignoreCase)
-
Uses of MatchMode in org.hibernate.envers.query.criteria
Methods in org.hibernate.envers.query.criteria with parameters of type MatchMode Modifier and Type Method Description AuditCriterion
AuditProperty. ilike(java.lang.String value, MatchMode matchMode)
Deprecated.since 5.2, useAuditProperty.ilike(String, MatchMode)
.AuditCriterion
AuditProperty. like(java.lang.String value, MatchMode matchMode)
Deprecated.since 5.2, useAuditProperty.like(String, MatchMode)
.
-