SimpleExpression |
Property.eq(java.lang.Object value) |
Creates an equality restriction.
|
static SimpleExpression |
Restrictions.eq(java.lang.String propertyName,
java.lang.Object value) |
Apply an "equal" constraint to the named property
|
SimpleExpression |
Property.ge(java.lang.Object value) |
Create a greater-than-or-equal-to restriction based on this property
|
static SimpleExpression |
Restrictions.ge(java.lang.String propertyName,
java.lang.Object value) |
Apply a "greater than or equal" constraint to the named property
|
SimpleExpression |
Property.gt(java.lang.Object value) |
Create a greater-than restriction based on this property
|
static SimpleExpression |
Restrictions.gt(java.lang.String propertyName,
java.lang.Object value) |
Apply a "greater than" constraint to the named property
|
SimpleExpression |
SimpleExpression.ignoreCase() |
Make case insensitive.
|
SimpleExpression |
Property.le(java.lang.Object value) |
Create a less-than-or-equal-to restriction based on this property
|
static SimpleExpression |
Restrictions.le(java.lang.String propertyName,
java.lang.Object value) |
Apply a "less than or equal" constraint to the named property
|
SimpleExpression |
Property.like(java.lang.Object value) |
Creates a LIKE restriction for this property
|
SimpleExpression |
Property.like(java.lang.String value,
MatchMode matchMode) |
Creates a LIKE restriction for this property
|
static SimpleExpression |
Restrictions.like(java.lang.String propertyName,
java.lang.Object value) |
Apply a "like" constraint to the named property
|
static SimpleExpression |
Restrictions.like(java.lang.String propertyName,
java.lang.String value,
MatchMode matchMode) |
Apply a "like" constraint to the named property using the provided match mode
|
SimpleExpression |
Property.lt(java.lang.Object value) |
Create a less-than restriction based on this property
|
static SimpleExpression |
Restrictions.lt(java.lang.String propertyName,
java.lang.Object value) |
Apply a "less than" constraint to the named property
|
SimpleExpression |
Property.ne(java.lang.Object value) |
Creates a non-equality restriction.
|
static SimpleExpression |
Restrictions.ne(java.lang.String propertyName,
java.lang.Object value) |
Apply a "not equal" constraint to the named property
|