Interface NumberFieldOperation<T>
- Type Parameters:
T-
- All Superinterfaces:
FieldOperation<T>
Operations to filter Number fields
- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionMatches Number values that between the given values (exclusive)Matches Number values that are equal to the given valueisGreaterOrEqualTo(Number value) Matches Number values that are greater than or equal to the given valueisGreaterThan(Number value) Matches Number values that are greater than the given valueMatches Number values that are in the given valuesisLessOrEqualTo(Number value) Matches Number values that are less than or equal to the given valueisLessThan(Number value) Matches Number values that are less than the given value
-
Method Details
-
isEqualTo
Matches Number values that are equal to the given value- Parameters:
value-- Returns:
- filter, orderBy, limit, execute operations
- See Also:
- API:
- This public API is available in Java.
-
isLessThan
Matches Number values that are less than the given value- Parameters:
value-- Returns:
- filter, orderBy, limit, execute operations
- See Also:
- API:
- This public API is available in Java.
-
isLessOrEqualTo
Matches Number values that are less than or equal to the given value- Parameters:
value-- Returns:
- filter, orderBy, limit, execute operations
- See Also:
- API:
- This public API is available in Java.
-
isGreaterThan
Matches Number values that are greater than the given value- Parameters:
value-- Returns:
- filter, orderBy, limit, execute operations
- See Also:
- API:
- This public API is available in Java.
-
isGreaterOrEqualTo
Matches Number values that are greater than or equal to the given value- Parameters:
value-- Returns:
- filter, orderBy, limit, execute operations
- See Also:
- API:
- This public API is available in Java.
-
isBetween
Matches Number values that between the given values (exclusive)- Parameters:
fromExlusive-toExclusive-- Returns:
- filter, orderBy, limit, execute operations
- See Also:
- API:
- This public API is available in Java.
-
isIn
Matches Number values that are in the given values- Parameters:
values- values- Returns:
- filter, orderBy, limit, execute operations
- Since:
- 10.0.2
- API:
- This public API is available in Java.
-