Interface CaseQuery.IWorkflowPriorityFilterQuery

All Superinterfaces:
CaseQuery.IColumnFilterQuery
Enclosing class:
CaseQuery

public static interface CaseQuery.IWorkflowPriorityFilterQuery extends CaseQuery.IColumnFilterQuery

Provides filter functionality for a WorkflowPriority column of ICase

Example:

CaseQuery.businessCases().where().state().isEqual(CaseState.DONE)
API:
This is a public API.
  • 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 IvyScript and Java. It has the visibility EXPERT.
    • 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 IvyScript and Java. It has the visibility EXPERT.