public interface FilterConditionEndContext
| Modifier and Type | Method and Description |
|---|---|
RangeConditionContextQueryBuilder |
between(java.lang.Object from,
java.lang.Object to)
Checks that the left argument is between the given range limits.
|
FilterConditionContextQueryBuilder |
contains(java.lang.Object value)
Checks that the left argument (which is expected to be an array or a Collection) contains the given element.
|
FilterConditionContextQueryBuilder |
containsAll(java.util.Collection values)
Checks that the left argument (which is expected to be an array or a Collection) contains all the elements of the
given collection, in any order.
|
FilterConditionContextQueryBuilder |
containsAll(java.lang.Object... values)
Checks that the left argument (which is expected to be an array or a Collection) contains all of the the given
elements, in any order.
|
FilterConditionContextQueryBuilder |
containsAny(java.util.Collection values)
Checks that the left argument (which is expected to be an array or a Collection) contains any of the elements of
the given collection.
|
FilterConditionContextQueryBuilder |
containsAny(java.lang.Object... values)
Checks that the left argument (which is expected to be an array or a Collection) contains any of the the given
elements.
|
<T extends QueryBuilder & FilterConditionContext> |
eq(java.lang.Object value)
Checks that the left argument is equal to the given value.
|
FilterConditionContextQueryBuilder |
equal(java.lang.Object value)
Alias for
eq(Object) |
FilterConditionContextQueryBuilder |
gt(java.lang.Object value)
Checks that the left argument is greater than the given value.
|
FilterConditionContextQueryBuilder |
gte(java.lang.Object value)
Checks that the left argument is greater than or equal to the given value.
|
FilterConditionContextQueryBuilder |
in(java.util.Collection values)
Checks that the left operand is equal to one of the elements from the Collection of values given as argument.
|
FilterConditionContextQueryBuilder |
in(java.lang.Object... values)
Checks that the left operand is equal to one of the (fixed) list of values given as argument.
|
FilterConditionContextQueryBuilder |
isNull()
Checks that the left argument is null.
|
FilterConditionContextQueryBuilder |
like(java.lang.String pattern)
Checks that the left argument (which is expected to be a String) matches a wildcard pattern that follows the JPA
rules.
|
FilterConditionContextQueryBuilder |
lt(java.lang.Object value)
Checks that the left argument is less than the given value.
|
FilterConditionContextQueryBuilder |
lte(java.lang.Object value)
Checks that the left argument is less than or equal to the given value.
|
FilterConditionContextQueryBuilder in(java.lang.Object... values)
values - the list of valuesFilterConditionContextQueryBuilder in(java.util.Collection values)
values - the collection of valuesFilterConditionContextQueryBuilder like(java.lang.String pattern)
pattern - the wildcard patternFilterConditionContextQueryBuilder contains(java.lang.Object value)
value - the value to checkFilterConditionContextQueryBuilder containsAll(java.lang.Object... values)
values - the list of elements to checkFilterConditionContextQueryBuilder containsAll(java.util.Collection values)
values - the Collection of elements to checkFilterConditionContextQueryBuilder containsAny(java.lang.Object... values)
values - the list of elements to checkFilterConditionContextQueryBuilder containsAny(java.util.Collection values)
values - the Collection of elements to checkFilterConditionContextQueryBuilder isNull()
<T extends QueryBuilder & FilterConditionContext> T eq(java.lang.Object value)
value - the value to compare withFilterConditionContextQueryBuilder equal(java.lang.Object value)
eq(Object)FilterConditionContextQueryBuilder lt(java.lang.Object value)
value - the value to compare withFilterConditionContextQueryBuilder lte(java.lang.Object value)
value - the value to compare withFilterConditionContextQueryBuilder gt(java.lang.Object value)
value - the value to compare withFilterConditionContextQueryBuilder gte(java.lang.Object value)
value - the value to compare withRangeConditionContextQueryBuilder between(java.lang.Object from, java.lang.Object to)
RangeConditionContextfrom - the start of the rangeto - the end of the range