Interface TaskQuery.IIntegerColumnFilterQuery
- All Superinterfaces:
TaskQuery.IColumnFilterQuery,TaskQuery.IPatternColumnFilterQuery
- Enclosing class:
TaskQuery
ITask- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionisEqual(int value) Adds a filter condition that selects rows with the givenvalue.isEqual(long value) Adds a filter condition that selects rows with the givenvalue.isGreaterOrEqualThan(int value) Adds a filter condition that selects rows that have values that are greater or equal than the givenvalue.isGreaterOrEqualThan(long value) Adds a filter condition that selects rows that have values that are greater or equal than the givenvalue.isGreaterThan(int value) Adds a filter condition that selects rows that have values that are greater than the givenvalue.isGreaterThan(long value) Adds a filter condition that selects rows that have values that are greater than the givenvalue.isIn(long... values) Adds a filter condition that selects rows that have values that are in the given list ofvalues.Adds a filter condition that selects rows that have values that are in the given list ofvalues.isLowerOrEqualThan(int value) Adds a filter condition that selects rows that have values that are lower or equal than the givenvalue.isLowerOrEqualThan(long value) Adds a filter condition that selects rows that have values that are lower or equal than the givenvalue.isLowerThan(int value) Adds a filter condition that selects rows that have values that are lower than the givenvalue.isLowerThan(long value) Adds a filter condition that selects rows that have values that are lower than the givenvalue.isNotEqual(int value) Adds a filter condition that selects rows that do not have the givenvalue.isNotEqual(long value) Adds a filter condition that selects rows that do not have the givenvalue.isNotIn(long... values) Adds a filter condition that selects rows that have values that are not in the given list ofvalues.Adds a filter condition that selects rows that have values that are not in the given list ofvalues.Methods inherited from interface ch.ivyteam.ivy.workflow.query.TaskQuery.IColumnFilterQuery
isNotNull, isNullMethods inherited from interface ch.ivyteam.ivy.workflow.query.TaskQuery.IPatternColumnFilterQuery
isLike, isLikeIgnoreCase, isNotLike, isNotLikeIgnoreCase
-
Method Details
-
isEqual
Adds a filter condition that selects rows with the given
value.SQL part:
[column] = [value]- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isEqual
Adds a filter condition that selects rows with the given
value.SQL part:
[column] = [value]- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isNotEqual
Adds a filter condition that selects rows that do not have the given
value.SQL part:
[column] <> [value]- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isNotEqual
Adds a filter condition that selects rows that do not have the given
value.SQL part:
[column] <> [value]- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isGreaterThan
Adds a filter condition that selects rows that have values that are greater than the given
value.SQL part:
[column] > [value]- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isGreaterThan
Adds a filter condition that selects rows that have values that are greater than the given
value.SQL part:
[column] > [value]- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isGreaterOrEqualThan
Adds a filter condition that selects rows that have values that are greater or equal than the given
value.SQL part:
[column] >= [value]- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isGreaterOrEqualThan
Adds a filter condition that selects rows that have values that are greater or equal than the given
value.SQL part:
[column] >= [value]- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isLowerThan
Adds a filter condition that selects rows that have values that are lower than the given
value.SQL part:
[column] < [value]- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isLowerThan
Adds a filter condition that selects rows that have values that are lower than the given
value.SQL part:
[column] < [value]- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isLowerOrEqualThan
Adds a filter condition that selects rows that have values that are lower or equal than the given
value.SQL part:
[column] <= [value]- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isLowerOrEqualThan
Adds a filter condition that selects rows that have values that are lower or equal than the given
value.SQL part:
[column] <= [value]- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isIn
Adds a filter condition that selects rows that have values that are in the given list of
values.SQL part:
[column] IN ([values])- Parameters:
values-- Returns:
- query for further composition
- Since:
- 11.1
- API:
- This public API is available in Java.
-
isIn
Adds a filter condition that selects rows that have values that are in the given list of
values.SQL part:
[column] IN ([values])- Parameters:
values-- Returns:
- query for further composition
- Since:
- 11.1
- API:
- This public API is available in Java.
-
isNotIn
Adds a filter condition that selects rows that have values that are not in the given list of
values.SQL part:
[column] NOT IN ([values])- Parameters:
values-- Returns:
- query for further composition
- Since:
- 12.0
- API:
- This public API is available in Java.
-
isNotIn
Adds a filter condition that selects rows that have values that are not in the given list of
values.SQL part:
[column] NOT IN ([values])- Parameters:
values-- Returns:
- query for further composition
- Since:
- 12.0
- API:
- This public API is available in Java.
-