public interface FilterConditionEndContext
Modifier and Type | Method and Description |
---|---|
RangeConditionContext |
between(Object from,
Object to)
Checks that the left argument is between the given range limits.
|
FilterConditionContext |
contains(Object value)
Checks that the left argument (which is expected to be an array or a Collection) contains the given element.
|
FilterConditionContext |
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.
|
FilterConditionContext |
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.
|
FilterConditionContext |
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.
|
FilterConditionContext |
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.
|
FilterConditionContext |
eq(Object value)
Checks that the left argument is equal to the given value.
|
FilterConditionContext |
gt(Object value)
Checks that the left argument is greater than the given value.
|
FilterConditionContext |
gte(Object value)
Checks that the left argument is greater than or equal to the given value.
|
FilterConditionContext |
in(Collection values)
Checks that the left operand is equal to one of the elements from the Collection of values given as argument.
|
FilterConditionContext |
in(Object... values)
Checks that the left operand is equal to one of the (fixed) list of values given as argument.
|
FilterConditionContext |
isNull()
Checks that the left argument is null.
|
FilterConditionContext |
like(String pattern)
Checks that the left argument (which is expected to be a String) matches a wildcard pattern that follows the JPA
rules.
|
FilterConditionContext |
lt(Object value)
Checks that the left argument is less than the given value.
|
FilterConditionContext |
lte(Object value)
Checks that the left argument is less than or equal to the given value.
|
FilterConditionContext in(Object... values)
values
- the list of valuesFilterConditionContext in(Collection values)
values
- the collection of valuesFilterConditionContext like(String pattern)
pattern
- the wildcard patternFilterConditionContext contains(Object value)
value
- the value to checkFilterConditionContext containsAll(Object... values)
values
- the list of elements to checkFilterConditionContext containsAll(Collection values)
values
- the Collection of elements to checkFilterConditionContext containsAny(Object... values)
values
- the list of elements to checkFilterConditionContext containsAny(Collection values)
values
- the Collection of elements to checkFilterConditionContext isNull()
FilterConditionContext eq(Object value)
value
- the value to compare withFilterConditionContext lt(Object value)
value
- the value to compare withFilterConditionContext lte(Object value)
value
- the value to compare withFilterConditionContext gt(Object value)
value
- the value to compare withFilterConditionContext gte(Object value)
value
- the value to compare withRangeConditionContext between(Object from, Object to)
RangeConditionContext
from
- the start of the rangeto
- the end of the rangeCopyright © 2014 JBoss, a division of Red Hat. All Rights Reserved.