Package | Description |
---|---|
org.hibernate.criterion |
A framework for defining restriction criteria and order criteria.
|
Modifier and Type | Method and Description |
---|---|
PropertyExpression |
Property.eqProperty(Property other) |
PropertyExpression |
Property.eqProperty(String other) |
static PropertyExpression |
Restrictions.eqProperty(String propertyName,
String otherPropertyName)
Apply an "equal" constraint to two properties
|
PropertyExpression |
Property.geProperty(Property other) |
PropertyExpression |
Property.geProperty(String other) |
static PropertyExpression |
Restrictions.geProperty(String propertyName,
String otherPropertyName)
Apply a "greater than or equal" constraint to two properties
|
PropertyExpression |
Property.gtProperty(Property other) |
PropertyExpression |
Property.gtProperty(String other) |
static PropertyExpression |
Restrictions.gtProperty(String propertyName,
String otherPropertyName)
Apply a "greater than" constraint to two properties
|
PropertyExpression |
Property.leProperty(Property other) |
PropertyExpression |
Property.leProperty(String other) |
static PropertyExpression |
Restrictions.leProperty(String propertyName,
String otherPropertyName)
Apply a "less than or equal" constraint to two properties
|
PropertyExpression |
Property.ltProperty(Property other) |
PropertyExpression |
Property.ltProperty(String other) |
static PropertyExpression |
Restrictions.ltProperty(String propertyName,
String otherPropertyName)
Apply a "less than" constraint to two properties
|
PropertyExpression |
Property.neProperty(Property other) |
PropertyExpression |
Property.neProperty(String other) |
static PropertyExpression |
Restrictions.neProperty(String propertyName,
String otherPropertyName)
Apply a "not equal" constraint to two properties
|
Copyright © 2018 JBoss by Red Hat. All rights reserved.