Package org.infinispan.query.dsl
Interface FilterConditionEndContext
Deprecated.
The context that ends a condition. Here we are expected to specify the right hand side of the filter condition, the
operator and the operand, in order to complete the filter.
- Since:
- 6.0
- Author:
- anistor@redhat.com
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Checks that the left argument is between the given range limits.Deprecated.Checks that the left argument (which is expected to be an array or a Collection) contains the given element.containsAll
(Object... values) Deprecated.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.containsAll
(Collection values) Deprecated.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.containsAny
(Object... values) Deprecated.Checks that the left argument (which is expected to be an array or a Collection) contains any of the the given elements.containsAny
(Collection values) Deprecated.Checks that the left argument (which is expected to be an array or a Collection) contains any of the elements of the given collection.<T extends QueryBuilder & FilterConditionContext>
TDeprecated.Checks that the left argument is equal to the given value.Deprecated.Alias foreq(Object)
Deprecated.Checks that the left argument is greater than the given value.Deprecated.Checks that the left argument is greater than or equal to the given value.Deprecated.Checks that the left operand is equal to one of the (fixed) list of values given as argument.in
(Collection values) Deprecated.Checks that the left operand is equal to one of the elements from the Collection of values given as argument.isNull()
Deprecated.Checks that the left argument is null.Deprecated.Checks that the left argument (which is expected to be a String) matches a wildcard pattern that follows the JPA rules.Deprecated.Checks that the left argument is less than the given value.Deprecated.Checks that the left argument is less than or equal to the given value.
-
Method Details
-
in
Deprecated.Checks that the left operand is equal to one of the (fixed) list of values given as argument.- Parameters:
values
- the list of values- Returns:
- the completed context
-
in
Deprecated.Checks that the left operand is equal to one of the elements from the Collection of values given as argument.- Parameters:
values
- the collection of values- Returns:
- the completed context
-
like
Deprecated.Checks that the left argument (which is expected to be a String) matches a wildcard pattern that follows the JPA rules.- Parameters:
pattern
- the wildcard pattern- Returns:
- the completed context
-
contains
Deprecated.Checks that the left argument (which is expected to be an array or a Collection) contains the given element.- Parameters:
value
- the value to check- Returns:
- the completed context
-
containsAll
Deprecated.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.- Parameters:
values
- the list of elements to check- Returns:
- the completed context
-
containsAll
Deprecated.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.- Parameters:
values
- the Collection of elements to check- Returns:
- the completed context
-
containsAny
Deprecated.Checks that the left argument (which is expected to be an array or a Collection) contains any of the the given elements.- Parameters:
values
- the list of elements to check- Returns:
- the completed context
-
containsAny
Deprecated.Checks that the left argument (which is expected to be an array or a Collection) contains any of the elements of the given collection.- Parameters:
values
- the Collection of elements to check- Returns:
- the completed context
-
isNull
FilterConditionContextQueryBuilder isNull()Deprecated.Checks that the left argument is null.- Returns:
- the completed context
-
eq
Deprecated.Checks that the left argument is equal to the given value.- Parameters:
value
- the value to compare with- Returns:
- the completed context
-
equal
Deprecated.Alias foreq(Object)
-
lt
Deprecated.Checks that the left argument is less than the given value.- Parameters:
value
- the value to compare with- Returns:
- the completed context
-
lte
Deprecated.Checks that the left argument is less than or equal to the given value.- Parameters:
value
- the value to compare with- Returns:
- the completed context
-
gt
Deprecated.Checks that the left argument is greater than the given value.- Parameters:
value
- the value to compare with- Returns:
- the completed context
-
gte
Deprecated.Checks that the left argument is greater than or equal to the given value.- Parameters:
value
- the value to compare with- Returns:
- the completed context
-
between
Deprecated.Checks that the left argument is between the given range limits. The limits are inclusive by default, but this can be changed using the methods from the returnedRangeConditionContext
- Parameters:
from
- the start of the rangeto
- the end of the range- Returns:
- the RangeConditionContext context
-
QueryBuilder
.