public interface PlatformGroupQuery extends Query<PlatformGroupQuery,PlatformGroup>
Query.NullHandlingOnOrder
Modifier and Type | Method and Description |
---|---|
PlatformGroupQuery |
groupId(String groupId)
Only select
PlatformGroup s with the given id. |
PlatformGroupQuery |
groupIds(List<String> groupIds)
Only select
PlatformGroup s with the given ids. |
PlatformGroupQuery |
groupKey(String groupKey)
Only select
PlatformGroup s which have the given key. |
PlatformGroupQuery |
groupKeys(List<String> groupKeys)
Only select
PlatformGroup s which have the given keys. |
PlatformGroupQuery |
groupMember(String groupMemberUserId)
Only selects
PlatformGroup s where the given user is a member of. |
PlatformGroupQuery |
groupMembers(List<String> groupMemberUserIds)
Only selects
PlatformGroup s where the given users are a member of. |
PlatformGroupQuery |
groupName(String groupName)
Only select
PlatformGroup s with the given name. |
PlatformGroupQuery |
groupNameLike(String groupNameLike)
Only select
PlatformGroup s where the name matches the given parameter. |
PlatformGroupQuery |
groupNameLikeIgnoreCase(String groupNameLikeIgnoreCase)
Only select
PlatformGroup s where the name matches the given parameter (ignoring case). |
PlatformGroupQuery |
groupTenantId(String tenantId)
Only select
PlatformGroup s which have the given tenant id. |
PlatformGroupQuery |
groupType(String groupType)
Only select
PlatformGroup s which have the given type. |
PlatformGroupQuery |
orderByGroupId()
Order by group id (needs to be followed by
Query.asc() or Query.desc() ). |
PlatformGroupQuery |
orderByGroupName()
Order by group name (needs to be followed by
Query.asc() or Query.desc() ). |
PlatformGroupQuery |
orderByGroupType()
Order by group type (needs to be followed by
Query.asc() or Query.desc() ). |
PlatformGroupQuery |
withoutTenantId()
Only select
PlatformGroup s which have no tenant id. |
PlatformGroupQuery groupId(String groupId)
PlatformGroup
s with the given id.PlatformGroupQuery groupIds(List<String> groupIds)
PlatformGroup
s with the given ids.PlatformGroupQuery groupName(String groupName)
PlatformGroup
s with the given name.PlatformGroupQuery groupNameLike(String groupNameLike)
PlatformGroup
s where the name matches the given parameter. The syntax to use is that of SQL, eg. %test%.PlatformGroupQuery groupNameLikeIgnoreCase(String groupNameLikeIgnoreCase)
PlatformGroup
s where the name matches the given parameter (ignoring case). The syntax to use is that of SQL, eg. %test%.PlatformGroupQuery groupType(String groupType)
PlatformGroup
s which have the given type.PlatformGroupQuery groupKey(String groupKey)
PlatformGroup
s which have the given key.PlatformGroupQuery groupKeys(List<String> groupKeys)
PlatformGroup
s which have the given keys.PlatformGroupQuery groupTenantId(String tenantId)
PlatformGroup
s which have the given tenant id.PlatformGroupQuery withoutTenantId()
PlatformGroup
s which have no tenant id.PlatformGroupQuery groupMember(String groupMemberUserId)
PlatformGroup
s where the given user is a member of.PlatformGroupQuery groupMembers(List<String> groupMemberUserIds)
PlatformGroup
s where the given users are a member of.PlatformGroupQuery orderByGroupId()
Query.asc()
or Query.desc()
).PlatformGroupQuery orderByGroupName()
Query.asc()
or Query.desc()
).PlatformGroupQuery orderByGroupType()
Query.asc()
or Query.desc()
).