Package ch.ivyteam.ivy.workflow.query
Interface TaskQuery.ICustomFieldOrderBy
- Enclosing class:
TaskQuery
public static interface TaskQuery.ICustomFieldOrderBy
Provides ordering functionality for custom fields of
ITask.
Example:
TaskQuery.create()
.orderBy()
.customField().stringField("CostCenter")
.customField().stringField("CostGroup").descending();
- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionnumberField(String fieldName) Orders the result of the query by the customNumberfieldfieldName.stringField(String fieldName) Orders the result of the query by the customStringfieldfieldName.timestampField(String fieldName) Orders the result of the query by the customTimestampfieldfieldName.
-
Method Details
-
stringField
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 Java.
-
numberField
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 Java.
-
timestampField
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 Java.
-