Package ch.ivyteam.ivy.workflow.query
Interface WorkflowEventQuery.IColumnFilterQuery
- All Known Subinterfaces:
WorkflowEventQuery.ICaseStateFilterQuery,WorkflowEventQuery.IDateColumnFilterQuery,WorkflowEventQuery.IIntegerColumnFilterQuery,WorkflowEventQuery.INumberColumnFilterQuery,WorkflowEventQuery.IPatternColumnFilterQuery,WorkflowEventQuery.IStringColumnFilterQuery,WorkflowEventQuery.ITaskStateFilterQuery
- Enclosing class:
WorkflowEventQuery
public static interface WorkflowEventQuery.IColumnFilterQuery
Basic filter functionality provider for a column of
IWorkflowEvent- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionAdds a filter condition that selects rows that do not have NULL values.isNull()Adds a filter condition that selects rows with NULL values.
-
Method Details
-
isNull
WorkflowEventQuery.FilterLink isNull()Adds a filter condition that selects rows with NULL values.
SQL part:
[column] IS NULL- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
isNotNull
WorkflowEventQuery.FilterLink isNotNull()Adds a filter condition that selects rows that do not have NULL values.
SQL part:
[column] IS NOT NULL- Returns:
- query for further composition
- API:
- This public API is available in Java.
-