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