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)
Creates an equality restriction between 2 properties
|
PropertyExpression |
Property.eqProperty(java.lang.String other)
Creates an equality restriction between 2 properties
|
static PropertyExpression |
Restrictions.eqProperty(java.lang.String propertyName,
java.lang.String otherPropertyName)
Apply an "equal" constraint to two properties
|
PropertyExpression |
Property.geProperty(Property other)
Creates a greater-than-or-equal-to restriction between 2 properties
|
PropertyExpression |
Property.geProperty(java.lang.String other)
Creates a greater-than-or-equal-to restriction between 2 properties
|
static PropertyExpression |
Restrictions.geProperty(java.lang.String propertyName,
java.lang.String otherPropertyName)
Apply a "greater than or equal" constraint to two properties
|
PropertyExpression |
Property.gtProperty(Property other)
Creates a greater-than restriction between 2 properties
|
PropertyExpression |
Property.gtProperty(java.lang.String other)
Creates a greater-than restriction between 2 properties
|
static PropertyExpression |
Restrictions.gtProperty(java.lang.String propertyName,
java.lang.String otherPropertyName)
Apply a "greater than" constraint to two properties
|
PropertyExpression |
Property.leProperty(Property other)
Creates a less-than-or-equal-to restriction between 2 properties
|
PropertyExpression |
Property.leProperty(java.lang.String other)
Creates a less-than-or-equal-to restriction between 2 properties
|
static PropertyExpression |
Restrictions.leProperty(java.lang.String propertyName,
java.lang.String otherPropertyName)
Apply a "less than or equal" constraint to two properties
|
PropertyExpression |
Property.ltProperty(Property other)
Creates a less-than restriction between 2 properties
|
PropertyExpression |
Property.ltProperty(java.lang.String other)
Creates a less-than restriction between 2 properties
|
static PropertyExpression |
Restrictions.ltProperty(java.lang.String propertyName,
java.lang.String otherPropertyName)
Apply a "less than" constraint to two properties
|
PropertyExpression |
Property.neProperty(Property other)
Creates a non-equality restriction between 2 properties
|
PropertyExpression |
Property.neProperty(java.lang.String other)
Creates a non-equality restriction between 2 properties
|
static PropertyExpression |
Restrictions.neProperty(java.lang.String propertyName,
java.lang.String otherPropertyName)
Apply a "not equal" constraint to two properties
|
Copyright © 2001-2019 Red Hat, Inc. All Rights Reserved.