Package ch.ivyteam.ivy.workflow.query
Interface CaseQuery.ICustomFieldOrderBy
-
- Enclosing class:
- CaseQuery
public static interface CaseQuery.ICustomFieldOrderByProvides ordering functionality for custom fields ofICase.Example:
CaseQuery.businessCases() .orderBy() .customField().stringField("CostCenter") .customField().stringField("CostGroup").descending();- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CaseQuery.OrderByColumnQuerynumberField(String fieldName)Orders the result of the query by the customNumberfieldfieldName.CaseQuery.OrderByColumnQuerystringField(String fieldName)Orders the result of the query by the customStringfieldfieldName.CaseQuery.OrderByColumnQuerytimestampField(String fieldName)Orders the result of the query by the customTimestampfieldfieldName.
-
-
-
Method Detail
-
stringField
CaseQuery.OrderByColumnQuery stringField(String fieldName)
Orders 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.OrderByColumnQuery numberField(String fieldName)
Orders 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.OrderByColumnQuery timestampField(String fieldName)
Orders 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.
-
-