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

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


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

Packages that use SimpleExpression
net.sf.hibernate.expression   
 

Uses of SimpleExpression in net.sf.hibernate.expression
 

Subclasses of SimpleExpression in net.sf.hibernate.expression
 class EqExpression
           
 class GeExpression
           
 class GtExpression
           
 class LeExpression
           
 class LikeExpression
           
 class LtExpression
           
 

Methods in net.sf.hibernate.expression that return SimpleExpression
 SimpleExpression SimpleExpression.ignoreCase()
           
static SimpleExpression Expression.eq(String propertyName, Object value)
          Apply an "equal" constraint to the named property
static SimpleExpression Expression.like(String propertyName, Object value)
          Apply a "like" constraint to the named property
static SimpleExpression Expression.like(String propertyName, String value, MatchMode matchMode)
          Apply a "like" constraint to the named property
static SimpleExpression Expression.gt(String propertyName, Object value)
          Apply a "greater than" constraint to the named property
static SimpleExpression Expression.lt(String propertyName, Object value)
          Apply a "less than" constraint to the named property
static SimpleExpression Expression.le(String propertyName, Object value)
          Apply a "less than or equal" constraint to the named property
static SimpleExpression Expression.ge(String propertyName, Object value)
          Apply a "greater than or equal" constraint to the named property