Class CaseQuery.AggregationQuery

  • All Implemented Interfaces:
    CaseQuery.IAggregationQuery
    Enclosing class:
    CaseQuery

    public static class CaseQuery.AggregationQuery
    extends CaseQuery
    implements CaseQuery.IAggregationQuery
    This class provides methods to perform aggregations on the query. For each aggregation a column is added to the result set.

    Example:

    CaseQuery.businessCases().aggregate().sumWorkingTime().avgWorkingTime();
    Corresponds to SQL:
    SELECT SUM(WorkingTime) AS SumWorkingTime, AVG(WorkingTime) AS AvgWorkingTime FROM IWA_Case

    API:
    This is a public API.