Interface SignalEventQuery.IOrderByQueryColumns
-
- All Known Implementing Classes:
SignalEventQuery.OrderByColumnQuery,SignalEventQuery.OrderByQuery
- Enclosing class:
- SignalEventQuery
public static interface SignalEventQuery.IOrderByQueryColumnsProvides methods to order the result by columns ofISignalEvent.- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SignalEventQuery.OrderByColumnQueryapplicationId()Adds an order by statement for the columnApplicationIdin the default direction ascending.
To change the order to descending useapplicationId().descending()SignalEventQuery.OrderByColumnQuerysentByProcessElementPid()Adds an order by statement for the columnSentByProcessElementPidin the default direction ascending.
To change the order to descending usesentByProcessElementPid().descending()SignalEventQuery.OrderByColumnQuerysentByTaskId()Adds an order by statement for the columnSentByTaskIdin the default direction ascending.
To change the order to descending usesentByTaskId().descending()SignalEventQuery.OrderByColumnQuerysentByUserId()Adds an order by statement for the columnSentByUserIdin the default direction ascending.
To change the order to descending usesentByUserId().descending()SignalEventQuery.OrderByColumnQuerysentByUserName()Adds an order by statement for the columnSentByUserNamein the default direction ascending.
To change the order to descending usesentByUserName().descending()SignalEventQuery.OrderByColumnQuerysentTimestamp()Adds an order by statement for the columnSentTimestampin the default direction ascending.
To change the order to descending usesentTimestamp().descending()SignalEventQuery.OrderByColumnQuerysignalCode()Adds an order by statement for the columnSignalCodein the default direction ascending.
To change the order to descending usesignalCode().descending()SignalEventQuery.OrderByColumnQuerysignalEventId()Adds an order by statement for the columnSignalEventIdin the default direction ascending.
To change the order to descending usesignalEventId().descending()
-
-
-
Method Detail
-
signalEventId
SignalEventQuery.OrderByColumnQuery signalEventId()
Adds an order by statement for the column
SignalEventIdin the default direction ascending.
To change the order to descending usesignalEventId().descending()Example:
SignalEventQuery.create().orderBy().signalEventId()
SQL part:
ORDER BY SignalEventId ASC- Returns:
- query for further composition
- See Also:
SignalEventQuery.OrderByColumnQuery.descending(),SignalEventQuery.OrderByColumnQuery.ascending()- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
applicationId
SignalEventQuery.OrderByColumnQuery applicationId()
Adds an order by statement for the column
ApplicationIdin the default direction ascending.
To change the order to descending useapplicationId().descending()Example:
SignalEventQuery.create().orderBy().applicationId()
SQL part:
ORDER BY ApplicationId ASC- Returns:
- query for further composition
- See Also:
SignalEventQuery.OrderByColumnQuery.descending(),SignalEventQuery.OrderByColumnQuery.ascending()- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
signalCode
SignalEventQuery.OrderByColumnQuery signalCode()
Adds an order by statement for the column
SignalCodein the default direction ascending.
To change the order to descending usesignalCode().descending()Example:
SignalEventQuery.create().orderBy().signalCode()
SQL part:
ORDER BY SignalCode ASC- Returns:
- query for further composition
- See Also:
SignalEventQuery.OrderByColumnQuery.descending(),SignalEventQuery.OrderByColumnQuery.ascending()- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
sentTimestamp
SignalEventQuery.OrderByColumnQuery sentTimestamp()
Adds an order by statement for the column
SentTimestampin the default direction ascending.
To change the order to descending usesentTimestamp().descending()Example:
SignalEventQuery.create().orderBy().sentTimestamp()
SQL part:
ORDER BY SentTimestamp ASC- Returns:
- query for further composition
- See Also:
SignalEventQuery.OrderByColumnQuery.descending(),SignalEventQuery.OrderByColumnQuery.ascending()- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
sentByUserName
SignalEventQuery.OrderByColumnQuery sentByUserName()
Adds an order by statement for the column
SentByUserNamein the default direction ascending.
To change the order to descending usesentByUserName().descending()Example:
SignalEventQuery.create().orderBy().sentByUserName()
SQL part:
ORDER BY SentByUserName ASCThis is a virtual column. It contains the same value as the column
Nameof the referencedSecurityMember.- Returns:
- query for further composition
- See Also:
SignalEventQuery.OrderByColumnQuery.descending(),SignalEventQuery.OrderByColumnQuery.ascending()- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
sentByUserId
SignalEventQuery.OrderByColumnQuery sentByUserId()
Adds an order by statement for the column
SentByUserIdin the default direction ascending.
To change the order to descending usesentByUserId().descending()Example:
SignalEventQuery.create().orderBy().sentByUserId()
SQL part:
ORDER BY SentByUserId ASCThis is a virtual column. It contains the same value as the column
UserIdof the referencedUser.- Returns:
- query for further composition
- See Also:
SignalEventQuery.OrderByColumnQuery.descending(),SignalEventQuery.OrderByColumnQuery.ascending()- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
sentByTaskId
SignalEventQuery.OrderByColumnQuery sentByTaskId()
Adds an order by statement for the column
SentByTaskIdin the default direction ascending.
To change the order to descending usesentByTaskId().descending()Example:
SignalEventQuery.create().orderBy().sentByTaskId()
SQL part:
ORDER BY SentByTaskId ASC- Returns:
- query for further composition
- See Also:
SignalEventQuery.OrderByColumnQuery.descending(),SignalEventQuery.OrderByColumnQuery.ascending()- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
sentByProcessElementPid
SignalEventQuery.OrderByColumnQuery sentByProcessElementPid()
Adds an order by statement for the column
SentByProcessElementPidin the default direction ascending.
To change the order to descending usesentByProcessElementPid().descending()Example:
SignalEventQuery.create().orderBy().sentByProcessElementPid()
SQL part:
ORDER BY SentByProcessElementPid ASC- Returns:
- query for further composition
- See Also:
SignalEventQuery.OrderByColumnQuery.descending(),SignalEventQuery.OrderByColumnQuery.ascending()- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
-