public interface GroupQuery extends Query<GroupQuery,Group>
Groups.Query.NullHandlingOnOrder| Modifier and Type | Method and Description |
|---|---|
GroupQuery |
groupId(String groupId)
Only select
Groups with the given id. |
GroupQuery |
groupIds(List<String> groupIds)
Only select
Groups with the given ids. |
GroupQuery |
groupMember(String groupMemberUserId)
Only selects
Groups where the given user is a member of. |
GroupQuery |
groupMembers(List<String> groupMemberUserIds)
Only selects
Groups where the given users are a member of. |
GroupQuery |
groupName(String groupName)
Only select
Groups with the given name. |
GroupQuery |
groupNameLike(String groupNameLike)
Only select
Groups where the name matches the given parameter. |
GroupQuery |
groupNameLikeIgnoreCase(String groupNameLikeIgnoreCase)
Only select
Groups where the name matches the given parameter (ignoring case). |
GroupQuery |
groupType(String groupType)
Only select
Groups which have the given type. |
GroupQuery |
orderByGroupId()
Order by group id (needs to be followed by
Query.asc() or Query.desc()). |
GroupQuery |
orderByGroupName()
Order by group name (needs to be followed by
Query.asc() or Query.desc()). |
GroupQuery |
orderByGroupType()
Order by group type (needs to be followed by
Query.asc() or Query.desc()). |
GroupQuery groupId(String groupId)
Groups with the given id.GroupQuery groupIds(List<String> groupIds)
Groups with the given ids.GroupQuery groupName(String groupName)
Groups with the given name.GroupQuery groupNameLike(String groupNameLike)
Groups where the name matches the given parameter. The syntax to use is that of SQL, eg. %test%.GroupQuery groupNameLikeIgnoreCase(String groupNameLikeIgnoreCase)
Groups where the name matches the given parameter (ignoring case). The syntax to use is that of SQL, eg. %test%.GroupQuery groupType(String groupType)
Groups which have the given type.GroupQuery groupMember(String groupMemberUserId)
Groups where the given user is a member of.GroupQuery groupMembers(List<String> groupMemberUserIds)
Groups where the given users are a member of.GroupQuery orderByGroupId()
Query.asc() or Query.desc()).GroupQuery orderByGroupName()
Query.asc() or Query.desc()).GroupQuery orderByGroupType()
Query.asc() or Query.desc()).Copyright © 2020 Flowable. All rights reserved.