public enum GroupMembersSelectorError extends Enum<GroupMembersSelectorError>
GroupMembersSelector is used, and the
users are required to be members of the specified group.| Enum Constant and Description |
|---|
GROUP_NOT_FOUND
No matching group found.
|
MEMBER_NOT_IN_GROUP
At least one of the specified users is not a member of the group.
|
OTHER |
| Modifier and Type | Method and Description |
|---|---|
static GroupMembersSelectorError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupMembersSelectorError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupMembersSelectorError GROUP_NOT_FOUND
public static final GroupMembersSelectorError OTHER
public static final GroupMembersSelectorError MEMBER_NOT_IN_GROUP
public static GroupMembersSelectorError[] values()
for (GroupMembersSelectorError c : GroupMembersSelectorError.values()) System.out.println(c);
public static GroupMembersSelectorError valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null