public interface FilterConditionEndContext
Modifier and Type | Method and Description |
---|---|
RangeConditionContextQueryBuilder |
between(Object from,
Object to)
Checks that the left argument is between the given range limits.
|
FilterConditionContextQueryBuilder |
contains(Object value)
Checks that the left argument (which is expected to be an array or a Collection) contains the given element.
|
FilterConditionContextQueryBuilder |
containsAll(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(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(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(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(Object value)
Checks that the left argument is equal to the given value.
|
FilterConditionContextQueryBuilder |
equal(Object value)
Alias for
eq(Object) |
FilterConditionContextQueryBuilder |
gt(Object value)
Checks that the left argument is greater than the given value.
|
FilterConditionContextQueryBuilder |
gte(Object value)
Checks that the left argument is greater than or equal to the given value.
|
FilterConditionContextQueryBuilder |
in(Collection values)
Checks that the left operand is equal to one of the elements from the Collection of values given as argument.
|
FilterConditionContextQueryBuilder |
in(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(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(Object value)
Checks that the left argument is less than the given value.
|
FilterConditionContextQueryBuilder |
lte(Object value)
Checks that the left argument is less than or equal to the given value.
|
FilterConditionContextQueryBuilder in(Object... values)
values
- the list of valuesFilterConditionContextQueryBuilder in(Collection values)
values
- the collection of valuesFilterConditionContextQueryBuilder like(String pattern)
pattern
- the wildcard patternFilterConditionContextQueryBuilder contains(Object value)
value
- the value to checkFilterConditionContextQueryBuilder containsAll(Object... values)
values
- the list of elements to checkFilterConditionContextQueryBuilder containsAll(Collection values)
values
- the Collection of elements to checkFilterConditionContextQueryBuilder containsAny(Object... values)
values
- the list of elements to checkFilterConditionContextQueryBuilder containsAny(Collection values)
values
- the Collection of elements to checkFilterConditionContextQueryBuilder isNull()
<T extends QueryBuilder & FilterConditionContext> T eq(Object value)
value
- the value to compare withFilterConditionContextQueryBuilder equal(Object value)
eq(Object)
FilterConditionContextQueryBuilder lt(Object value)
value
- the value to compare withFilterConditionContextQueryBuilder lte(Object value)
value
- the value to compare withFilterConditionContextQueryBuilder gt(Object value)
value
- the value to compare withFilterConditionContextQueryBuilder gte(Object value)
value
- the value to compare withRangeConditionContextQueryBuilder between(Object from, Object to)
RangeConditionContext
from
- the start of the rangeto
- the end of the rangeCopyright © 2017 JBoss, a division of Red Hat. All rights reserved.