Package ch.ivyteam.ivy.workflow.query
Interface CaseQuery.ICaseStateFilterQuery
-
- All Superinterfaces:
CaseQuery.IColumnFilterQuery
- Enclosing class:
- CaseQuery
public static interface CaseQuery.ICaseStateFilterQuery extends CaseQuery.IColumnFilterQuery
Provides filter functionality for a
CaseStatecolumn ofICaseExample:
CaseQuery.businessCases().where().state().isEqual(CaseState.DONE)
- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CaseQuery.FilterLinkisEqual(CaseState value)Adds a filter condition that selects rows with the givenvalue.CaseQuery.FilterLinkisNotEqual(CaseState 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 Detail
-
isEqual
CaseQuery.FilterLink isEqual(CaseState value)
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 IvyScript and Java. It has the visibility EXPERT.
-
isNotEqual
CaseQuery.FilterLink isNotEqual(CaseState value)
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 IvyScript and Java. It has the visibility EXPERT.
-
-