Uses of Class
net.sf.hibernate.expression.MatchMode

Packages that use MatchMode
net.sf.hibernate.expression   
 

Uses of MatchMode in net.sf.hibernate.expression
 

Fields in net.sf.hibernate.expression declared as MatchMode
static MatchMode MatchMode.EXACT
          Match the entire string to the pattern
static MatchMode MatchMode.START
          Match the start of the string to the pattern
static MatchMode MatchMode.END
          Match the end of the string to the pattern
static MatchMode MatchMode.ANYWHERE
          Match the pattern anywhere in the string
 

Methods in net.sf.hibernate.expression with parameters of type MatchMode
static SimpleExpression Expression.like(String propertyName, String value, MatchMode matchMode)
          Apply a "like" constraint to the named property
static Criterion Expression.ilike(String propertyName, String value, MatchMode matchMode)
          A case-insensitive "like", similar to Postgres ilike operator
 Example Example.enableLike(MatchMode matchMode)
          Use the "like" operator for all string-valued properties