Package ch.ivyteam.ivy.workflow.query
Interface TaskQuery.ICustomFieldGroupBy
- Enclosing class:
TaskQuery
public static interface TaskQuery.ICustomFieldGroupBy
Provides grouping functionality for custom fields of
ITask.
Example:
TaskQuery.create().groupBy().customField().stringField("CreditGroup").aggregate().countRows();
- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionnumberField(String fieldName) Groups the result of the query by the customNumberfieldfieldName.stringField(String fieldName) Groups the result of the query by the customStringfieldfieldName.timestampField(String fieldName) Groups the result of the query by the customTimestampfieldfieldName.
-
Method Details
-
stringField
Groups the result of the query by the custom
StringfieldfieldName.- Parameters:
fieldName- Name of the customStringfield.- Returns:
- Query for further composition.
- API:
- This public API is available in Java.
-
numberField
Groups the result of the query by the custom
NumberfieldfieldName.- Parameters:
fieldName- Name of the customNumberfield.- Returns:
- Query for further composition.
- API:
- This public API is available in Java.
-
timestampField
Groups the result of the query by the custom
TimestampfieldfieldName.- Parameters:
fieldName- Name of the customTimestampfield.- Returns:
- Query for further composition
- API:
- This public API is available in Java.
-