Interface TaskQuery.IOrderByQueryColumns
- All Known Implementing Classes:
TaskQuery.OrderByColumnQuery,TaskQuery.OrderByQuery
- Enclosing class:
- TaskQuery
ITask.
Example:
Corresponds to SQL:
TaskQuery.create()
.orderBy()
.activatorUserId()
.priority().descending();SELECT * FROM IWA_Task
ORDER BY
ActivatorUserId ASC,
Priority DESC
- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionAdds an order by statement for the columnActivatorDisplayNamein the default direction ascending.
To change the order to descending useactivatorDisplayName().descending()Adds an order by statement for the columnActivatorIdin the default direction ascending.
To change the order to descending useactivatorId().descending()Adds an order by statement for the columnActivatorNamein the default direction ascending.
To change the order to descending useactivatorName().descending()Adds an order by statement for the columnApplicationIdin the default direction ascending.
To change the order to descending useapplicationId().descending()Adds an order by statement for the columnBusinessCalendarin the default direction ascending.
To change the order to descending usebusinessCalendar().descending()Adds an order by statement for the columnBusinessCaseIdin the default direction ascending.
To change the order to descending usebusinessCaseId().descending()Adds an order by statement for the columnBusinessRuntimein the default direction ascending.
To change the order to descending usebusinessRuntime().descending()caseId()Adds an order by statement for the columnCaseIdin the default direction ascending.
To change the order to descending usecaseId().descending()category()Adds an order by statement for the columnCategoryin the default direction ascending.
To change the order to descending usecategory().descending()Adds an order by statement for a custom field in the default direction ascending.
To change the order to descending usecustomField().descending()Adds an order by statement for the columnDelayTimestampin the default direction ascending.
To change the order to descending usedelayTimestamp().descending()Deprecated.ordering by CLOB fields is not possible.Adds an order by statement for the columnEndTaskSwitchEventIdin the default direction ascending.
To change the order to descending useendTaskSwitchEventId().descending()Adds an order by statement for the columnEndTimestampin the default direction ascending.
To change the order to descending useendTimestamp().descending()Adds an order by statement for the columnExpiredCreatorTaskIdin the default direction ascending.
To change the order to descending useexpiredCreatorTaskId().descending()Adds an order by statement for the columnExpiryActivatorDisplayNamein the default direction ascending.
To change the order to descending useexpiryActivatorDisplayName().descending()Adds an order by statement for the columnExpiryActivatorIdin the default direction ascending.
To change the order to descending useexpiryActivatorId().descending()Adds an order by statement for the columnExpiryActivatorNamein the default direction ascending.
To change the order to descending useexpiryActivatorName().descending()Adds an order by statement for the columnExpiryPriorityin the default direction ascending.
To change the order to descending useexpiryPriority().descending()Adds an order by statement for the columnExpiryTaskStartElementPidin the default direction ascending.
To change the order to descending useexpiryTaskStartElementPid().descending()Adds an order by statement for the columnExpiryTimestampin the default direction ascending.
To change the order to descending useexpiryTimestamp().descending()Adds an order by statement for the columnFailedTimeoutTimestampin the default direction ascending.
To change the order to descending usefailedTimeoutTimestamp().descending()Adds an order by statement for the columnIsExpiredin the default direction ascending.
To change the order to descending useisExpired().descending()Adds an order by statement for the columnIsOfflinein the default direction ascending.
To change the order to descending useisOffline().descending()Adds an order by statement for the columnIsUpdatedOnStartin the default direction ascending.
To change the order to descending useisUpdatedOnStart().descending()Adds an order by statement for the columnLanguageIdin the default direction ascending.
To change the order to descending uselanguageId().descending()name()Adds an order by statement for the columnNamein the default direction ascending.
To change the order to descending usename().descending()Adds an order by statement for the columnNumberOfFailuresin the default direction ascending.
To change the order to descending usenumberOfFailures().descending()Adds an order by statement for the columnNumberOfResumesin the default direction ascending.
To change the order to descending usenumberOfResumes().descending()Adds an order by statement for the columnOriginalActivatorDisplayNamein the default direction ascending.
To change the order to descending useoriginalActivatorDisplayName().descending()Adds an order by statement for the columnOriginalActivatorIdin the default direction ascending.
To change the order to descending useoriginalActivatorId().descending()Adds an order by statement for the columnOriginalActivatorNamein the default direction ascending.
To change the order to descending useoriginalActivatorName().descending()Adds an order by statement for the columnOriginalPriorityin the default direction ascending.
To change the order to descending useoriginalPriority().descending()priority()Adds an order by statement for the columnPriorityin the default direction ascending.
To change the order to descending usepriority().descending()Adds an order by statement for the columnProcessModelIdin the default direction ascending.
To change the order to descending useprocessModelId().descending()Adds an order by statement for the columnRequestPathin the default direction ascending.
To change the order to descending userequestPath().descending()Adds an order by statement for the columnSecuritySystemIdin the default direction ascending.
To change the order to descending usesecuritySystemId().descending()Adds an order by statement for the columnStartTaskSwitchEventIdin the default direction ascending.
To change the order to descending usestartTaskSwitchEventId().descending()Adds an order by statement for the columnStartTimestampin the default direction ascending.
To change the order to descending usestartTimestamp().descending()state()Adds an order by statement for the columnStatein the default direction ascending.
To change the order to descending usestate().descending()Adds an order by statement for the columnTaskEndIdin the default direction ascending.
To change the order to descending usetaskEndId().descending()taskId()Adds an order by statement for the columnTaskIdin the default direction ascending.
To change the order to descending usetaskId().descending()Adds an order by statement for the columnTaskStartIdin the default direction ascending.
To change the order to descending usetaskStartId().descending()Adds an order by statement for the columnTimeoutedCreatorIntrmdtEventIdin the default direction ascending.
To change the order to descending usetimeoutedCreatorIntrmdtEventId().descending()workerId()Adds an order by statement for the columnWorkerIdin the default direction ascending.
To change the order to descending useworkerId().descending()Adds an order by statement for the columnWorkerSessionIdin the default direction ascending.
To change the order to descending useworkerSessionId().descending()Adds an order by statement for the columnWorkerUserDisplayNamein the default direction ascending.
To change the order to descending useworkerUserDisplayName().descending()Adds an order by statement for the columnWorkerUserNamein the default direction ascending.
To change the order to descending useworkerUserName().descending()Adds an order by statement for the columnWorkingTimein the default direction ascending.
To change the order to descending useworkingTime().descending()
-
Method Details
-
taskId
TaskQuery.OrderByColumnQuery taskId()Adds an order by statement for the column
TaskIdin the default direction ascending.
To change the order to descending usetaskId().descending()Example:
TaskQuery.create().orderBy().taskId()
SQL part:
ORDER BY TaskId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
caseId
TaskQuery.OrderByColumnQuery caseId()Adds an order by statement for the column
CaseIdin the default direction ascending.
To change the order to descending usecaseId().descending()Example:
TaskQuery.create().orderBy().caseId()
SQL part:
ORDER BY CaseId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
businessCaseId
TaskQuery.OrderByColumnQuery businessCaseId()Adds an order by statement for the column
BusinessCaseIdin the default direction ascending.
To change the order to descending usebusinessCaseId().descending()Example:
TaskQuery.create().orderBy().businessCaseId()
SQL part:
ORDER BY BusinessCaseId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
processModelId
TaskQuery.OrderByColumnQuery processModelId()Adds an order by statement for the column
ProcessModelIdin the default direction ascending.
To change the order to descending useprocessModelId().descending()Example:
TaskQuery.create().orderBy().processModelId()
SQL part:
ORDER BY ProcessModelId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
securitySystemId
TaskQuery.OrderByColumnQuery securitySystemId()Adds an order by statement for the column
SecuritySystemIdin the default direction ascending.
To change the order to descending usesecuritySystemId().descending()Example:
TaskQuery.create().orderBy().securitySystemId()
SQL part:
ORDER BY SecuritySystemId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
applicationId
TaskQuery.OrderByColumnQuery applicationId()Adds an order by statement for the column
ApplicationIdin the default direction ascending.
To change the order to descending useapplicationId().descending()Example:
TaskQuery.create().orderBy().applicationId()
SQL part:
ORDER BY ApplicationId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
startTaskSwitchEventId
TaskQuery.OrderByColumnQuery startTaskSwitchEventId()Adds an order by statement for the column
StartTaskSwitchEventIdin the default direction ascending.
To change the order to descending usestartTaskSwitchEventId().descending()Example:
TaskQuery.create().orderBy().startTaskSwitchEventId()
SQL part:
ORDER BY StartTaskSwitchEventId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
endTaskSwitchEventId
TaskQuery.OrderByColumnQuery endTaskSwitchEventId()Adds an order by statement for the column
EndTaskSwitchEventIdin the default direction ascending.
To change the order to descending useendTaskSwitchEventId().descending()Example:
TaskQuery.create().orderBy().endTaskSwitchEventId()
SQL part:
ORDER BY EndTaskSwitchEventId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
taskStartId
TaskQuery.OrderByColumnQuery taskStartId()Adds an order by statement for the column
TaskStartIdin the default direction ascending.
To change the order to descending usetaskStartId().descending()Example:
TaskQuery.create().orderBy().taskStartId()
SQL part:
ORDER BY TaskStartId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
taskEndId
TaskQuery.OrderByColumnQuery taskEndId()Adds an order by statement for the column
TaskEndIdin the default direction ascending.
To change the order to descending usetaskEndId().descending()Example:
TaskQuery.create().orderBy().taskEndId()
SQL part:
ORDER BY TaskEndId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
workerId
TaskQuery.OrderByColumnQuery workerId()Adds an order by statement for the column
WorkerIdin the default direction ascending.
To change the order to descending useworkerId().descending()Example:
TaskQuery.create().orderBy().workerId()
SQL part:
ORDER BY WorkerId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
workerUserName
TaskQuery.OrderByColumnQuery workerUserName()Adds an order by statement for the column
WorkerUserNamein the default direction ascending.
To change the order to descending useworkerUserName().descending()Example:
TaskQuery.create().orderBy().workerUserName()
SQL part:
ORDER BY WorkerUserName ASCThis is a virtual column. It contains the same value as the column
Nameof the referencedWorker.- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
workerUserDisplayName
TaskQuery.OrderByColumnQuery workerUserDisplayName()Adds an order by statement for the column
WorkerUserDisplayNamein the default direction ascending.
To change the order to descending useworkerUserDisplayName().descending()Example:
TaskQuery.create().orderBy().workerUserDisplayName()
SQL part:
ORDER BY WorkerUserDisplayName ASCThis is a virtual column. It contains the same value as the column
DisplayNameof the referencedWorker.- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
workerSessionId
TaskQuery.OrderByColumnQuery workerSessionId()Adds an order by statement for the column
WorkerSessionIdin the default direction ascending.
To change the order to descending useworkerSessionId().descending()Example:
TaskQuery.create().orderBy().workerSessionId()
SQL part:
ORDER BY WorkerSessionId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
activatorId
TaskQuery.OrderByColumnQuery activatorId()Adds an order by statement for the column
ActivatorIdin the default direction ascending.
To change the order to descending useactivatorId().descending()Example:
TaskQuery.create().orderBy().activatorId()
SQL part:
ORDER BY ActivatorId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
originalActivatorId
TaskQuery.OrderByColumnQuery originalActivatorId()Adds an order by statement for the column
OriginalActivatorIdin the default direction ascending.
To change the order to descending useoriginalActivatorId().descending()Example:
TaskQuery.create().orderBy().originalActivatorId()
SQL part:
ORDER BY OriginalActivatorId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
originalActivatorName
TaskQuery.OrderByColumnQuery originalActivatorName()Adds an order by statement for the column
OriginalActivatorNamein the default direction ascending.
To change the order to descending useoriginalActivatorName().descending()Example:
TaskQuery.create().orderBy().originalActivatorName()
SQL part:
ORDER BY OriginalActivatorName ASCThis is a virtual column. It contains the same value as the column
MemberNameof the referencedOriginalActivator.- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
originalActivatorDisplayName
TaskQuery.OrderByColumnQuery originalActivatorDisplayName()Adds an order by statement for the column
OriginalActivatorDisplayNamein the default direction ascending.
To change the order to descending useoriginalActivatorDisplayName().descending()Example:
TaskQuery.create().orderBy().originalActivatorDisplayName()
SQL part:
ORDER BY OriginalActivatorDisplayName ASCThis is a virtual column. It contains the same value as the column
DisplayNameof the referencedOriginalActivator.- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
expiryActivatorId
TaskQuery.OrderByColumnQuery expiryActivatorId()Adds an order by statement for the column
ExpiryActivatorIdin the default direction ascending.
To change the order to descending useexpiryActivatorId().descending()Example:
TaskQuery.create().orderBy().expiryActivatorId()
SQL part:
ORDER BY ExpiryActivatorId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
expiryActivatorName
TaskQuery.OrderByColumnQuery expiryActivatorName()Adds an order by statement for the column
ExpiryActivatorNamein the default direction ascending.
To change the order to descending useexpiryActivatorName().descending()Example:
TaskQuery.create().orderBy().expiryActivatorName()
SQL part:
ORDER BY ExpiryActivatorName ASCThis is a virtual column. It contains the same value as the column
MemberNameof the referencedExpiryActivator.- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
expiryActivatorDisplayName
TaskQuery.OrderByColumnQuery expiryActivatorDisplayName()Adds an order by statement for the column
ExpiryActivatorDisplayNamein the default direction ascending.
To change the order to descending useexpiryActivatorDisplayName().descending()Example:
TaskQuery.create().orderBy().expiryActivatorDisplayName()
SQL part:
ORDER BY ExpiryActivatorDisplayName ASCThis is a virtual column. It contains the same value as the column
DisplayNameof the referencedExpiryActivator.- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
expiryPriority
TaskQuery.OrderByColumnQuery expiryPriority()Adds an order by statement for the column
ExpiryPriorityin the default direction ascending.
To change the order to descending useexpiryPriority().descending()Example:
TaskQuery.create().orderBy().expiryPriority()
SQL part:
ORDER BY ExpiryPriority ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
expiryTimestamp
TaskQuery.OrderByColumnQuery expiryTimestamp()Adds an order by statement for the column
ExpiryTimestampin the default direction ascending.
To change the order to descending useexpiryTimestamp().descending()Example:
TaskQuery.create().orderBy().expiryTimestamp()
SQL part:
ORDER BY ExpiryTimestamp ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
expiryTaskStartElementPid
TaskQuery.OrderByColumnQuery expiryTaskStartElementPid()Adds an order by statement for the column
ExpiryTaskStartElementPidin the default direction ascending.
To change the order to descending useexpiryTaskStartElementPid().descending()Example:
TaskQuery.create().orderBy().expiryTaskStartElementPid()
SQL part:
ORDER BY ExpiryTaskStartElementPid ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
isExpired
TaskQuery.OrderByColumnQuery isExpired()Adds an order by statement for the column
IsExpiredin the default direction ascending.
To change the order to descending useisExpired().descending()Example:
TaskQuery.create().orderBy().isExpired()
SQL part:
ORDER BY IsExpired ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
expiredCreatorTaskId
TaskQuery.OrderByColumnQuery expiredCreatorTaskId()Adds an order by statement for the column
ExpiredCreatorTaskIdin the default direction ascending.
To change the order to descending useexpiredCreatorTaskId().descending()Example:
TaskQuery.create().orderBy().expiredCreatorTaskId()
SQL part:
ORDER BY ExpiredCreatorTaskId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
timeoutedCreatorIntrmdtEventId
TaskQuery.OrderByColumnQuery timeoutedCreatorIntrmdtEventId()Adds an order by statement for the column
TimeoutedCreatorIntrmdtEventIdin the default direction ascending.
To change the order to descending usetimeoutedCreatorIntrmdtEventId().descending()Example:
TaskQuery.create().orderBy().timeoutedCreatorIntrmdtEventId()
SQL part:
ORDER BY TimeoutedCreatorIntrmdtEventId ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
delayTimestamp
TaskQuery.OrderByColumnQuery delayTimestamp()Adds an order by statement for the column
DelayTimestampin the default direction ascending.
To change the order to descending usedelayTimestamp().descending()Example:
TaskQuery.create().orderBy().delayTimestamp()
SQL part:
ORDER BY DelayTimestamp ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
state
TaskQuery.OrderByColumnQuery state()Adds an order by statement for the column
Statein the default direction ascending.
To change the order to descending usestate().descending()Example:
TaskQuery.create().orderBy().state()
SQL part:
ORDER BY State ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
requestPath
TaskQuery.OrderByColumnQuery requestPath()Adds an order by statement for the column
RequestPathin the default direction ascending.
To change the order to descending userequestPath().descending()Example:
TaskQuery.create().orderBy().requestPath()
SQL part:
ORDER BY RequestPath ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
name
TaskQuery.OrderByColumnQuery name()Adds an order by statement for the column
Namein the default direction ascending.
To change the order to descending usename().descending()Example:
TaskQuery.create().orderBy().name()
SQL part:
ORDER BY Name ASCThis is a virtual column. It contains the same value as the column
Nameof the referencedTaskLocalized.- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
description
Deprecated.ordering by CLOB fields is not possible.Adds an order by statement for the column
Descriptionin the default direction ascending.
To change the order to descending usedescription().descending()Example:
TaskQuery.create().orderBy().description()
SQL part:
ORDER BY Description ASCThis is a virtual column. It contains the same value as the column
Descriptionof the referencedTaskLocalized.- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
priority
TaskQuery.OrderByColumnQuery priority()Adds an order by statement for the column
Priorityin the default direction ascending.
To change the order to descending usepriority().descending()Example:
TaskQuery.create().orderBy().priority()
SQL part:
ORDER BY Priority ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
originalPriority
TaskQuery.OrderByColumnQuery originalPriority()Adds an order by statement for the column
OriginalPriorityin the default direction ascending.
To change the order to descending useoriginalPriority().descending()Example:
TaskQuery.create().orderBy().originalPriority()
SQL part:
ORDER BY OriginalPriority ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
startTimestamp
TaskQuery.OrderByColumnQuery startTimestamp()Adds an order by statement for the column
StartTimestampin the default direction ascending.
To change the order to descending usestartTimestamp().descending()Example:
TaskQuery.create().orderBy().startTimestamp()
SQL part:
ORDER BY StartTimestamp ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
endTimestamp
TaskQuery.OrderByColumnQuery endTimestamp()Adds an order by statement for the column
EndTimestampin the default direction ascending.
To change the order to descending useendTimestamp().descending()Example:
TaskQuery.create().orderBy().endTimestamp()
SQL part:
ORDER BY EndTimestamp ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
businessCalendar
TaskQuery.OrderByColumnQuery businessCalendar()Adds an order by statement for the column
BusinessCalendarin the default direction ascending.
To change the order to descending usebusinessCalendar().descending()Example:
TaskQuery.create().orderBy().businessCalendar()
SQL part:
ORDER BY BusinessCalendar ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
workingTime
TaskQuery.OrderByColumnQuery workingTime()Adds an order by statement for the column
WorkingTimein the default direction ascending.
To change the order to descending useworkingTime().descending()Example:
TaskQuery.create().orderBy().workingTime()
SQL part:
ORDER BY WorkingTime ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
businessRuntime
TaskQuery.OrderByColumnQuery businessRuntime()Adds an order by statement for the column
BusinessRuntimein the default direction ascending.
To change the order to descending usebusinessRuntime().descending()Example:
TaskQuery.create().orderBy().businessRuntime()
SQL part:
ORDER BY BusinessRuntime ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
failedTimeoutTimestamp
TaskQuery.OrderByColumnQuery failedTimeoutTimestamp()Adds an order by statement for the column
FailedTimeoutTimestampin the default direction ascending.
To change the order to descending usefailedTimeoutTimestamp().descending()Example:
TaskQuery.create().orderBy().failedTimeoutTimestamp()
SQL part:
ORDER BY FailedTimeoutTimestamp ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
numberOfFailures
TaskQuery.OrderByColumnQuery numberOfFailures()Adds an order by statement for the column
NumberOfFailuresin the default direction ascending.
To change the order to descending usenumberOfFailures().descending()Example:
TaskQuery.create().orderBy().numberOfFailures()
SQL part:
ORDER BY NumberOfFailures ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
numberOfResumes
TaskQuery.OrderByColumnQuery numberOfResumes()Adds an order by statement for the column
NumberOfResumesin the default direction ascending.
To change the order to descending usenumberOfResumes().descending()Example:
TaskQuery.create().orderBy().numberOfResumes()
SQL part:
ORDER BY NumberOfResumes ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
category
TaskQuery.OrderByColumnQuery category()Adds an order by statement for the column
Categoryin the default direction ascending.
To change the order to descending usecategory().descending()Example:
TaskQuery.create().orderBy().category()
SQL part:
ORDER BY Category ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
isUpdatedOnStart
TaskQuery.OrderByColumnQuery isUpdatedOnStart()Adds an order by statement for the column
IsUpdatedOnStartin the default direction ascending.
To change the order to descending useisUpdatedOnStart().descending()Example:
TaskQuery.create().orderBy().isUpdatedOnStart()
SQL part:
ORDER BY IsUpdatedOnStart ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
isOffline
TaskQuery.OrderByColumnQuery isOffline()Adds an order by statement for the column
IsOfflinein the default direction ascending.
To change the order to descending useisOffline().descending()Example:
TaskQuery.create().orderBy().isOffline()
SQL part:
ORDER BY IsOffline ASC- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
activatorName
TaskQuery.OrderByColumnQuery activatorName()Adds an order by statement for the column
ActivatorNamein the default direction ascending.
To change the order to descending useactivatorName().descending()Example:
TaskQuery.create().orderBy().activatorName()
SQL part:
ORDER BY ActivatorName ASCThis is a virtual column. It contains the same value as the column
MemberNameof the referencedActivator.- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
activatorDisplayName
TaskQuery.OrderByColumnQuery activatorDisplayName()Adds an order by statement for the column
ActivatorDisplayNamein the default direction ascending.
To change the order to descending useactivatorDisplayName().descending()Example:
TaskQuery.create().orderBy().activatorDisplayName()
SQL part:
ORDER BY ActivatorDisplayName ASCThis is a virtual column. It contains the same value as the column
DisplayNameof the referencedActivator.- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
languageId
TaskQuery.OrderByColumnQuery languageId()Adds an order by statement for the column
LanguageIdin the default direction ascending.
To change the order to descending uselanguageId().descending()Example:
TaskQuery.create().orderBy().languageId()
SQL part:
ORDER BY LanguageId ASCThis is a virtual column. It contains the same value as the column
LanguageIdof the referencedTaskLocalized.- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
customField
TaskQuery.ICustomFieldOrderBy customField()Adds an order by statement for a custom field in the default direction ascending.
To change the order to descending usecustomField().descending()Example:
TaskQuery.create().orderBy().customField().stringField("myStringField")- Returns:
- query for further composition
- See Also:
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-