Interface TaskQuery.ITaskBusinessStateFilterQuery
- All Superinterfaces:
TaskQuery.IColumnFilterQuery
- Enclosing class:
TaskQuery
Provides filter functionality for a TaskBusinessState column of ITask
Example:
TaskQuery.create().where().businessState().isEqual(TaskBusinessState.DONE)
- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionisEqual(TaskBusinessState state) Adds a filter condition that selects rows with the givenvalue.isIn(TaskBusinessState... values) Adds a filter condition that selects rows that have values that are in the given list ofvalues.isIn(List<TaskBusinessState> values) Adds a filter condition that selects rows that have values that are in the given list ofvalues.isNotEqual(TaskBusinessState state) Adds a filter condition that selects the rows that do not have the givenvalue.isNotIn(TaskBusinessState... values) Adds a filter condition that selects rows that have values that are not in the given list ofvalues.isNotIn(List<TaskBusinessState> values) 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:
state-- 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:
state-- 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.
-