Interface TaskBoundarySignalEventReceiverQuery.IAggregationQuery

All Known Implementing Classes:
TaskBoundarySignalEventReceiverQuery.AggregationQuery
Enclosing class:
TaskBoundarySignalEventReceiverQuery

public static interface TaskBoundarySignalEventReceiverQuery.IAggregationQuery
Provides methods to perform aggregations on the query. For each aggregation a column is added to the result set.
API:
This is a public API.
  • Method Details

    • countRows

      Adds a result column Count to the query, that contains the number of (grouped) rows.

      SQL part: COUNT(*) AS Count

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

      Adds a result column MinTaskSignalEventId to the query, that contains the minimum value of the field TaskSignalEventId of all (grouped) rows.

      SQL part: MIN(TaskSignalEventId) AS MinTaskSignalEventId

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

      Adds a result column MaxTaskSignalEventId to the query, that contains the maximum value of the field TaskSignalEventId of all (grouped) rows.

      SQL part: MAX(TaskSignalEventId) AS MaxTaskSignalEventId

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

      Adds a result column MinSignalCodePattern to the query, that contains the minimum value of the field SignalCodePattern of all (grouped) rows.

      SQL part: MIN(SignalCodePattern) AS MinSignalCodePattern

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

      Adds a result column MaxSignalCodePattern to the query, that contains the maximum value of the field SignalCodePattern of all (grouped) rows.

      SQL part: MAX(SignalCodePattern) AS MaxSignalCodePattern

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