Interface CaseQuery.ICustomFieldFilterQuery

Enclosing class:
CaseQuery

public static interface CaseQuery.ICustomFieldFilterQuery
Provides filter functionality for custom fields of ICase.
API:
This is a public API.
  • Method Details

    • stringField

      Adds a filter condition that selects a custom String field with given name fieldName.

      Parameters:
      fieldName -
      Returns:
      query for further composition
      API:
      This public API is available in IvyScript and Java. It has the visibility EXPERT.
    • anyStringField

      Adds a filter condition that selects any custom String field. The filter condition is fulfilled if at least one custom String field fulfills the condition.

      Returns:
      query for further composition
      API:
      This public API is available in IvyScript and Java. It has the visibility EXPERT.
    • textField

      Adds a filter condition that selects a custom text field with given name fieldName.

      Parameters:
      fieldName -
      Returns:
      query for further composition
      API:
      This public API is available in IvyScript and Java. It has the visibility EXPERT.
    • numberField

      Adds a filter condition that selects a custom Number field with given name fieldName.

      Parameters:
      fieldName -
      Returns:
      query for further composition
      API:
      This public API is available in IvyScript and Java. It has the visibility EXPERT.
    • anyNumberField

      Adds a filter condition that selects any custom Number field. The filter condition is fulfilled if at least one custom Number field fulfills the condition.

      Returns:
      query for further composition
      API:
      This public API is available in IvyScript and Java. It has the visibility EXPERT.
    • timestampField

      CaseQuery.IDateColumnFilterQuery timestampField(String fieldName)

      Adds a filter condition that selects a custom Timestamp field with given name fieldName.

      Parameters:
      fieldName -
      Returns:
      query for further composition
      API:
      This public API is available in IvyScript and Java. It has the visibility EXPERT.
    • anyTimestampField

      Adds a filter condition that selects any custom Timestamp field. The filter condition is fulfilled if at least one custom Timestamp field fulfills the condition.

      Returns:
      query for further composition
      API:
      This public API is available in IvyScript and Java. It has the visibility EXPERT.