Query.NullHandlingOnOrder| Modifier and Type | Method and Description |
|---|---|
T |
memberOfGroup(String groupId)
Only select
Users that belong to the given group. |
T |
memberOfGroups(List<String> groupIds)
Only select
Users that belong to the given groups. |
T |
orderByUserEmail()
Order by user email (needs to be followed by
Query.asc() or Query.desc()). |
T |
orderByUserFirstName()
Order by user first name (needs to be followed by
Query.asc() or Query.desc()). |
T |
orderByUserId()
Order by user id (needs to be followed by
Query.asc() or Query.desc()). |
T |
orderByUserLastName()
Order by user last name (needs to be followed by
Query.asc() or Query.desc()). |
T |
tenantId(String tenantId)
Only select
Users that belong to the given tenant. |
T |
userDisplayName(String displayName)
Only select
Users with the given displayName. |
T |
userDisplayNameLike(String displayNameLike)
Only select
Users where the display name matches the given parameter. |
T |
userDisplayNameLikeIgnoreCase(String displayNameLikeIgnoreCase)
Only select
Users where the display name matches the given parameter (ignoring case). |
T |
userEmail(String email)
Only those
Users with the given email address. |
T |
userEmailLike(String emailLike)
Only select
Users where the email matches the given parameter. |
T |
userFirstName(String firstName)
Only select
Users with the given firstName. |
T |
userFirstNameLike(String firstNameLike)
Only select
Users where the first name matches the given parameter. |
T |
userFirstNameLikeIgnoreCase(String firstNameLikeIgnoreCase)
Only select
Users where the first name matches the given parameter (ignoring case). |
T |
userFullNameLike(String fullNameLike)
Only select
Users where the full name matches the given parameters. |
T |
userFullNameLikeIgnoreCase(String fullNameLikeIgnoreCase)
Only select
Users where the full name matches the given parameters (ignoring case). |
T |
userId(String id)
Only select
Users with the given id/ |
T |
userIdIgnoreCase(String id)
Only select
Users with the given id (ignoring case) / |
T |
userIds(List<String> ids)
Only select
Users with the given ids/ |
T |
userLastName(String lastName)
Only select
Users with the given lastName. |
T |
userLastNameLike(String lastNameLike)
Only select
Users where the last name matches the given parameter. |
T |
userLastNameLikeIgnoreCase(String lastNameLikeIgnoreCase)
Only select
Users where the last name matches the given parameter (ignoring case). |
T userIdIgnoreCase(String id)
Users with the given id (ignoring case) /T userFirstNameLike(String firstNameLike)
Users where the first name matches the given parameter. The syntax is that of SQL, eg. %name%.T userFirstNameLikeIgnoreCase(String firstNameLikeIgnoreCase)
Users where the first name matches the given parameter (ignoring case). The syntax is that of SQL, eg. %name%.T userLastNameLike(String lastNameLike)
Users where the last name matches the given parameter. The syntax is that of SQL, eg. %name%.T userLastNameLikeIgnoreCase(String lastNameLikeIgnoreCase)
Users where the last name matches the given parameter (ignoring case). The syntax is that of SQL, eg. %name%.T userFullNameLike(String fullNameLike)
Users where the full name matches the given parameters. Both the first name and last name will be tried, ie in semi-sql: where firstName like xxx or lastname like xxxT userFullNameLikeIgnoreCase(String fullNameLikeIgnoreCase)
Users where the full name matches the given parameters (ignoring case). Both the first name and last name will be tried, ie in semi-sql: where firstName like xxx or lastname
like xxxT userDisplayNameLike(String displayNameLike)
Users where the display name matches the given parameter. The syntax is that of SQL, eg. %name%.T userDisplayNameLikeIgnoreCase(String displayNameLikeIgnoreCase)
Users where the display name matches the given parameter (ignoring case). The syntax is that of SQL, eg. %name%.T userEmailLike(String emailLike)
Users where the email matches the given parameter. The syntax is that of SQL, eg. %test%.T memberOfGroups(List<String> groupIds)
Users that belong to the given groups.T orderByUserId()
Query.asc() or Query.desc()).T orderByUserFirstName()
Query.asc() or Query.desc()).T orderByUserLastName()
Query.asc() or Query.desc()).T orderByUserEmail()
Query.asc() or Query.desc()).Copyright © 2020 Flowable. All rights reserved.