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

Uses of Class org.hibernate.criterion.MatchMode (Hibernate API Documentation) - Hibernate 3.2.3 正式版 API 英文文档


Uses of Class
org.hibernate.criterion.MatchMode

Packages that use MatchMode
org.hibernate.criterion A framework for defining restriction criteria and order criteria. 
 

Uses of MatchMode in org.hibernate.criterion
 

Fields in org.hibernate.criterion 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 org.hibernate.criterion with parameters of type MatchMode
static SimpleExpression Restrictions.like(String propertyName, String value, MatchMode matchMode)
          Apply a "like" constraint to the named property
static Criterion Restrictions.ilike(String propertyName, String value, MatchMode matchMode)
          A case-insensitive "like", similar to Postgres ilike operator
 SimpleExpression Property.like(String value, MatchMode matchMode)
           
 Example Example.enableLike(MatchMode matchMode)
          Use the "like" operator for all string-valued properties
 

Constructors in org.hibernate.criterion with parameters of type MatchMode
LikeExpression(String propertyName, String value, MatchMode matchMode)
           
LikeExpression(String propertyName, String value, MatchMode matchMode, Character escapeChar, boolean ignoreCase)
           
IlikeExpression(String propertyName, String value, MatchMode matchMode)