Interface TaskQuery.ITaskStateFilterQuery
- All Superinterfaces:
TaskQuery.IColumnFilterQuery
- Enclosing class:
TaskQuery
Provides filter functionality for a TaskState column of ITask
Example:
TaskQuery.create().where().state().isEqual(TaskState.DONE)
- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionAdds a filter condition that selects rows with the givenvalue.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.isNotEqual(TaskState value) Adds a filter condition that selects the rows that do not have the givenvalue.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, isNull
-
Method Details
-
isEqual
Adds a filter condition that selects rows with the given
value.SQL part:
[column] = [value]or[column] IS NULL- Parameters:
value-- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isNotEqual
Adds a filter condition that selects the rows that do not have the given
value.SQL part:
[column] <> [value]or[column] IS NOT NULL- 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.
-