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

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


Uses of Class
org.hibernate.criterion.PropertyExpression

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

Uses of PropertyExpression in org.hibernate.criterion
 

Methods in org.hibernate.criterion that return PropertyExpression
static PropertyExpression Restrictions.eqProperty(String propertyName, String otherPropertyName)
          Apply an "equal" constraint to two properties
static PropertyExpression Restrictions.neProperty(String propertyName, String otherPropertyName)
          Apply a "not equal" constraint to two properties
static PropertyExpression Restrictions.ltProperty(String propertyName, String otherPropertyName)
          Apply a "less than" constraint to two properties
static PropertyExpression Restrictions.leProperty(String propertyName, String otherPropertyName)
          Apply a "less than or equal" constraint to two properties
static PropertyExpression Restrictions.gtProperty(String propertyName, String otherPropertyName)
          Apply a "greater than" constraint to two properties
static PropertyExpression Restrictions.geProperty(String propertyName, String otherPropertyName)
          Apply a "greater than or equal" constraint to two properties
 PropertyExpression Property.eqProperty(Property other)
           
 PropertyExpression Property.neProperty(Property other)
           
 PropertyExpression Property.leProperty(Property other)
           
 PropertyExpression Property.geProperty(Property other)
           
 PropertyExpression Property.ltProperty(Property other)
           
 PropertyExpression Property.gtProperty(Property other)
           
 PropertyExpression Property.eqProperty(String other)
           
 PropertyExpression Property.neProperty(String other)
           
 PropertyExpression Property.leProperty(String other)
           
 PropertyExpression Property.geProperty(String other)
           
 PropertyExpression Property.ltProperty(String other)
           
 PropertyExpression Property.gtProperty(String other)