Class TaskBoundarySignalEventReceiverQuery.OrderByColumnQuery

All Implemented Interfaces:
TaskBoundarySignalEventReceiverQuery.IOrderByQueryColumns
Enclosing class:
TaskBoundarySignalEventReceiverQuery

public static class TaskBoundarySignalEventReceiverQuery.OrderByColumnQuery extends TaskBoundarySignalEventReceiverQuery.OrderByQuery
API:
This is a public API.
  • Method Details

    • ascending

      Sorts the column in ascending direction.

      Example:

      TaskBoundarySignalEventReceiverQuery.create().orderBy().name().ascending()

      SQL part: ORDER BY [column] ASC

      Returns:
      query for further composition
      API:
      This public API is available in Java.
    • ascendingNullFirst

      Sorts the column in ascending direction, with NULL values at the beginning of the list.

      Example:

      TaskBoundarySignalEventReceiverQuery.create().orderBy().name().ascendingNullFirst()

      SQL part: ORDER BY (CASE WHEN [column] IS NULL THEN 0 ELSE 1 END), [column] ASC

      Returns:
      query for further composition
      API:
      This public API is available in Java.
    • ascendingNullLast

      Sorts the column in ascending direction, with NULL values at the end of the list.

      Example:

      TaskBoundarySignalEventReceiverQuery.create().orderBy().name().ascendingNullLast()

      SQL part: ORDER BY (CASE WHEN [column] IS NULL THEN 1 ELSE 0 END), [column] ASC

      Returns:
      query for further composition
      API:
      This public API is available in Java.
    • descending

      Sorts the column in descending direction.

      Example:

      TaskBoundarySignalEventReceiverQuery.create().orderBy().name().descending()

      SQL part: ORDER BY [column] DESC

      Returns:
      query for further composition
      API:
      This public API is available in Java.
    • descendingNullFirst

      Sorts the column in descending direction, with NULL values at the beginning of the list.

      Example:

      TaskBoundarySignalEventReceiverQuery.create().orderBy().name().descendingNullFirst()

      SQL part: ORDER BY (CASE WHEN [column] IS NULL THEN 0 ELSE 1 END), [column] DESC

      Returns:
      query for further composition
      API:
      This public API is available in Java.
    • descendingNullLast

      Sorts the column in descending direction, with NULL values at the end of the list.

      Example:

      TaskBoundarySignalEventReceiverQuery.create().orderBy().name().descendingNullLast()

      SQL part: ORDER BY (CASE WHEN [column] IS NULL THEN 1 ELSE 0 END), [column] DESC

      Returns:
      query for further composition
      API:
      This public API is available in Java.