站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 2.1.8 正式版 API 英文文档

Uses of Class net.sf.hibernate.expression.MatchMode (Hibernate API Documentation) - Hibernate 2.1.8 正式版 API 英文文档


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