public interface IUserContainer
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsUserID(String sUserID)
Check if the passed user is contained in this container.
|
Set<String> |
getAllContainedUserIDs() |
int |
getContainedUserCount() |
boolean |
hasContainedUsers() |
boolean hasContainedUsers()
true if at least one user is contained,
false otherwise.@Nonnegative int getContainedUserCount()
@Nonnull @ReturnsMutableCopy Set<String> getAllContainedUserIDs()
nullbut maybe empty set of all assigned user
IDs.boolean containsUserID(String sUserID)
sUserID - The user ID to check. May be null.true if the user is contained in this container,
false otherwise.Copyright © 2014–2015 Philip Helger. All rights reserved.