Interface CaseQuery.ICustomFieldAggregationQuery
- Enclosing class:
CaseQuery
ICase.
Example:
CaseQuery.businessCases().aggregate().customField().sumNumberField("ValuePoints");
- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionavgNumberField(String fieldName) Adds a result customNumberfield columnAvg[fieldName]to the query that contains the average of the customNumberfield with namefieldNameof all (grouped) rows.avgTimestampField(String fieldName) Adds a result customTimestampfield columnAvg[fieldName]to the query that contains the average of the customTimestampfield with namefieldNameof all (grouped) rows.maxNumberField(String fieldName) Adds a result customNumberfield columnMax[fieldName]to the query that contains the maximum value of the customNumberfield with namefieldNameof all (grouped) rows.maxStringField(String fieldName) Adds a result customStringfield columnMax[fieldName]to the query that contains the maximum value of the customStringfield with namefieldNameof all (grouped) rows.maxTimestampField(String fieldName) Adds a result customTimestampfield columnMax[fieldName]to the query that contains the maximum value of the customTimestampfield with namefieldNameof all (grouped) rows.minNumberField(String fieldName) Adds a result customNumberfield columnMin[fieldName]to the query that contains the minimum value of the customNumberfield with namefieldNameof all (grouped) rows.sumNumberField(String fieldName) Adds a result customNumberfield columnSum[fieldName]to the query that contains the sum of the customNumberfield with namefieldNameof all (grouped) rows.sumTimestampField(String fieldName) Adds a result customTimestampfield columnSum[fieldName]to the query that contains the sum of the customTimestampfield with namefieldNameof all (grouped) rows.
-
Method Details
-
maxStringField
Adds a result custom
Stringfield columnMax[fieldName]to the query that contains the maximum value of the customStringfield with namefieldNameof all (grouped) rows.- Parameters:
fieldName- Name of the customStringfield.- Returns:
- Query for further composition.
- API:
- This public API is available in Java.
-
minNumberField
Adds a result custom
Numberfield columnMin[fieldName]to the query that contains the minimum value of the customNumberfield with namefieldNameof all (grouped) rows.- Parameters:
fieldName- Name of the customNumberfield.- Returns:
- Query for further composition.
- API:
- This public API is available in Java.
-
maxNumberField
Adds a result custom
Numberfield columnMax[fieldName]to the query that contains the maximum value of the customNumberfield with namefieldNameof all (grouped) rows.- Parameters:
fieldName- Name of the customNumberfield.- Returns:
- Query for further composition.
- API:
- This public API is available in Java.
-
avgNumberField
Adds a result custom
Numberfield columnAvg[fieldName]to the query that contains the average of the customNumberfield with namefieldNameof all (grouped) rows.- Parameters:
fieldName- Name of the customNumberfield.- Returns:
- Query for further composition.
- API:
- This public API is available in Java.
-
sumNumberField
Adds a result custom
Numberfield columnSum[fieldName]to the query that contains the sum of the customNumberfield with namefieldNameof all (grouped) rows.- Parameters:
fieldName- Name of the customNumberfield.- Returns:
- Query for further composition.
- API:
- This public API is available in Java.
-
maxTimestampField
Adds a result custom
Timestampfield columnMax[fieldName]to the query that contains the maximum value of the customTimestampfield with namefieldNameof all (grouped) rows.- Parameters:
fieldName- Name of the customTimestampfield.- Returns:
- Query for further composition.
- API:
- This public API is available in Java.
-
avgTimestampField
Adds a result custom
Timestampfield columnAvg[fieldName]to the query that contains the average of the customTimestampfield with namefieldNameof all (grouped) rows.- Parameters:
fieldName- Name of the customTimestampfield.- Returns:
- Query for further composition.
- API:
- This public API is available in Java.
-
sumTimestampField
Adds a result custom
Timestampfield columnSum[fieldName]to the query that contains the sum of the customTimestampfield with namefieldNameof all (grouped) rows.- Parameters:
fieldName- Name of the customTimestampfield.- Returns:
- Query for further composition.
- API:
- This public API is available in Java.
-