Interface TaskBoundarySignalEventReceiverQuery.IAggregationQuery
-
- All Known Implementing Classes:
TaskBoundarySignalEventReceiverQuery.AggregationQuery
- Enclosing class:
- TaskBoundarySignalEventReceiverQuery
public static interface TaskBoundarySignalEventReceiverQuery.IAggregationQueryProvides 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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaskBoundarySignalEventReceiverQuery.AggregationQuerycountRows()Adds a result columnCountto the query, that contains the number of (grouped) rows.TaskBoundarySignalEventReceiverQuery.AggregationQuerymaxSignalCodePattern()Adds a result columnMaxSignalCodePatternto the query, that contains the maximum value of the fieldSignalCodePatternof all (grouped) rows.TaskBoundarySignalEventReceiverQuery.AggregationQuerymaxTaskSignalEventId()Adds a result columnMaxTaskSignalEventIdto the query, that contains the maximum value of the fieldTaskSignalEventIdof all (grouped) rows.TaskBoundarySignalEventReceiverQuery.AggregationQueryminSignalCodePattern()Adds a result columnMinSignalCodePatternto the query, that contains the minimum value of the fieldSignalCodePatternof all (grouped) rows.TaskBoundarySignalEventReceiverQuery.AggregationQueryminTaskSignalEventId()Adds a result columnMinTaskSignalEventIdto the query, that contains the minimum value of the fieldTaskSignalEventIdof all (grouped) rows.
-
-
-
Method Detail
-
countRows
TaskBoundarySignalEventReceiverQuery.AggregationQuery countRows()
Adds a result column
Countto 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
TaskBoundarySignalEventReceiverQuery.AggregationQuery minTaskSignalEventId()
Adds a result column
MinTaskSignalEventIdto the query, that contains the minimum value of the fieldTaskSignalEventIdof 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
TaskBoundarySignalEventReceiverQuery.AggregationQuery maxTaskSignalEventId()
Adds a result column
MaxTaskSignalEventIdto the query, that contains the maximum value of the fieldTaskSignalEventIdof 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
TaskBoundarySignalEventReceiverQuery.AggregationQuery minSignalCodePattern()
Adds a result column
MinSignalCodePatternto the query, that contains the minimum value of the fieldSignalCodePatternof 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
TaskBoundarySignalEventReceiverQuery.AggregationQuery maxSignalCodePattern()
Adds a result column
MaxSignalCodePatternto the query, that contains the maximum value of the fieldSignalCodePatternof 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.
-
-