Package ch.ivyteam.ivy.workflow.query
Interface CaseQuery.ICustomFieldGroupBy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CaseQuery.GroupByQuerynumberField(String fieldName)Groups the result of the query by the customNumberfieldfieldName.CaseQuery.GroupByQuerystringField(String fieldName)Groups the result of the query by the customStringfieldfieldName.CaseQuery.GroupByQuerytimestampField(String fieldName)Groups the result of the query by the customTimestampfieldfieldName.
-
-
-
Method Detail
-
stringField
CaseQuery.GroupByQuery stringField(String fieldName)
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 IvyScript and Java. It has the visibility EXPERT.
-
numberField
CaseQuery.GroupByQuery numberField(String fieldName)
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 IvyScript and Java. It has the visibility EXPERT.
-
timestampField
CaseQuery.GroupByQuery timestampField(String fieldName)
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 IvyScript and Java. It has the visibility EXPERT.
-
-