Package ch.ivyteam.ivy.workflow.query
Interface CaseQuery.ICaseBusinessStateFilterQuery
- All Superinterfaces:
CaseQuery.IColumnFilterQuery
- Enclosing class:
- CaseQuery
public static interface CaseQuery.ICaseBusinessStateFilterQuery
extends CaseQuery.IColumnFilterQuery
Provides filter functionality for a CaseBusinessState column of ICase
Example:
CaseQuery.businessCases().where().businessState().isEqual(CaseBusinessState.DONE)
- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionisEqual(CaseBusinessState value) Adds a filter condition that selects rows with the givenvalue.isIn(CaseBusinessState... values) Adds a filter condition that selects rows that have values that are in the given list ofvalues.isIn(List<CaseBusinessState> values) Adds a filter condition that selects rows that have values that are in the given list ofvalues.isNotEqual(CaseBusinessState value) Adds a filter condition that selects the rows that do not have the givenvalue.Methods inherited from interface ch.ivyteam.ivy.workflow.query.CaseQuery.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.
-