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

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


Uses of Class
org.hibernate.criterion.SimpleExpression

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

Uses of SimpleExpression in org.hibernate.criterion
 

Methods in org.hibernate.criterion that return SimpleExpression
 SimpleExpression SimpleExpression.ignoreCase()
           
static SimpleExpression Restrictions.eq(String propertyName, Object value)
          Apply an "equal" constraint to the named property
static SimpleExpression Restrictions.ne(String propertyName, Object value)
          Apply a "not equal" constraint to the named property
static SimpleExpression Restrictions.like(String propertyName, Object value)
          Apply a "like" constraint to the named property
static SimpleExpression Restrictions.like(String propertyName, String value, MatchMode matchMode)
          Apply a "like" constraint to the named property
static SimpleExpression Restrictions.gt(String propertyName, Object value)
          Apply a "greater than" constraint to the named property
static SimpleExpression Restrictions.lt(String propertyName, Object value)
          Apply a "less than" constraint to the named property
static SimpleExpression Restrictions.le(String propertyName, Object value)
          Apply a "less than or equal" constraint to the named property
static SimpleExpression Restrictions.ge(String propertyName, Object value)
          Apply a "greater than or equal" constraint to the named property
 SimpleExpression Property.like(Object value)
           
 SimpleExpression Property.like(String value, MatchMode matchMode)
           
 SimpleExpression Property.eq(Object value)
           
 SimpleExpression Property.ne(Object value)
           
 SimpleExpression Property.gt(Object value)
           
 SimpleExpression Property.lt(Object value)
           
 SimpleExpression Property.le(Object value)
           
 SimpleExpression Property.ge(Object value)