Interface UserQuery.IOrderByQueryColumns

All Known Implementing Classes:
UserQuery.OrderByColumnQuery, UserQuery.OrderByQuery
Enclosing class:
UserQuery

public static interface UserQuery.IOrderByQueryColumns
Provides methods to order the result by columns of IUser.

Example:

UserQuery.create()
 .orderBy()
 .fullName().descending()
 .name();
Corresponds to SQL:
SELECT * FROM IWA_User
 ORDER BY
 FullName DESC,
 Name ASC
 

API:
This is a public API.
  • Method Summary

    Modifier and Type
    Method
    Description
    Adds an order by statement for the column EMailAddress in the default direction ascending.
    To change the order to descending use eMailAddress().descending()
    Adds an order by statement for the column ExternalId in the default direction ascending.
    To change the order to descending use externalId().descending()
    Adds an order by statement for the column FullName in the default direction ascending.
    To change the order to descending use fullName().descending()
    Adds an order by statement for the column Name in the default direction ascending.
    To change the order to descending use name().descending()
    Adds an order by statement for the column SecurityMemberId in the default direction ascending.
    To change the order to descending use securityMemberId().descending()
    Adds an order by statement for the column SecuritySystemId in the default direction ascending.
    To change the order to descending use securitySystemId().descending()