default Criteria |
Criteria.and(Criteria criteria) |
Create a AND condition with: (this criteria) AND (given criteria).
|
Criteria |
Criteria.PropertyOperand.arrayContains(Object value) |
Create a condition on an array property that returns true if the array property contains the specified value.
|
Criteria |
Criteria.And.getLeft() |
|
Criteria |
Criteria.Or.getLeft() |
|
Criteria |
Criteria.And.getRight() |
|
Criteria |
Criteria.Or.getRight() |
|
Criteria |
Criteria.PropertyOperand.greaterOrEqualTo(Object value) |
Create a '>=' condition on this property with the given value.
|
Criteria |
Criteria.PropertyOperand.greaterOrEqualTo(String entityName,
String propertyName) |
Equivalent to greaterOrEqualTo(Criteria.property(entityName, propertyName)).
|
Criteria |
Criteria.PropertyOperand.greaterThan(Object value) |
Create a '>' condition on this property with the given value.
|
Criteria |
Criteria.PropertyOperand.greaterThan(String entityName,
String propertyName) |
Equivalent to greaterThan(Criteria.property(entityName, propertyName)).
|
Criteria |
Criteria.PropertyOperand.in(Collection<?> values) |
Create a IN condition to compare this property with the set of given values.
|
Criteria |
Criteria.PropertyOperand.is(Object value) |
Create a 'is equal' condition on this property with the given value.
|
Criteria |
Criteria.PropertyOperand.is(String entityName,
String propertyName) |
Equivalent to is(Criteria.property(entityName, propertyName)).
|
Criteria |
Criteria.PropertyOperand.isNot(Object value) |
Create a 'is not equal' condition on this property with the given value.
|
Criteria |
Criteria.PropertyOperand.isNot(String entityName,
String propertyName) |
Equivalent to isNot(Criteria.property(entityName, propertyName)).
|
Criteria |
Criteria.PropertyOperand.isNotNull() |
Create a IS NOT NULL condition on this property.
|
Criteria |
Criteria.PropertyOperand.isNull() |
Create a IS NULL condition on this property.
|
Criteria |
Criteria.PropertyOperand.lessOrEqualTo(Object value) |
Create a '<=' condition on this property with the given value.
|
Criteria |
Criteria.PropertyOperand.lessOrEqualTo(String entityName,
String propertyName) |
Equivalent to lessOrEqualTo(Criteria.property(entityName, propertyName)).
|
Criteria |
Criteria.PropertyOperand.lessThan(Object value) |
Create a '<' condition on this property with the given value.
|
Criteria |
Criteria.PropertyOperand.lessThan(String entityName,
String propertyName) |
Equivalent to lessThan(Criteria.property(entityName, propertyName)).
|
Criteria |
Criteria.PropertyOperand.like(Object value) |
Create a LIKE condition on this property.
|
Criteria |
Criteria.PropertyOperand.like(String entityName,
String propertyName) |
Equivalent to like(Criteria.property(entityName, propertyName)).
|
Criteria |
Criteria.PropertyOperand.notIn(Collection<?> values) |
Create a NOT IN condition to compare this property with the set of given values.
|
Criteria |
Criteria.PropertyOperand.notLike(Object value) |
Create a NOT LIKE condition on this property.
|
Criteria |
Criteria.PropertyOperand.notLike(String entityName,
String propertyName) |
Equivalent to notLike(Criteria.property(entityName, propertyName)).
|
default Criteria |
Criteria.or(Criteria criteria) |
Create a OR condition with: (this criteria) OR (given criteria).
|