Package ch.ivyteam.ivy.workflow.query
Interface TaskQuery.ICustomFieldOrderBy
-
- Enclosing class:
- TaskQuery
public static interface TaskQuery.ICustomFieldOrderByProvides ordering functionality for custom fields ofITask.Example:
TaskQuery.create() .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 TaskQuery.OrderByColumnQuerynumberField(String fieldName)Orders the result of the query by the customNumberfieldfieldName.TaskQuery.OrderByColumnQuerystringField(String fieldName)Orders the result of the query by the customStringfieldfieldName.TaskQuery.OrderByColumnQuerytimestampField(String fieldName)Orders the result of the query by the customTimestampfieldfieldName.
-
-
-
Method Detail
-
stringField
TaskQuery.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
TaskQuery.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
TaskQuery.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.
-
-