public enum MemberSelectorError extends Enum<MemberSelectorError>
| Enum Constant and Description |
|---|
USER_NOT_FOUND
No matching user found.
|
USER_NOT_IN_TEAM
The user is not a member of the team.
|
| Modifier and Type | Method and Description |
|---|---|
static MemberSelectorError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MemberSelectorError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemberSelectorError USER_NOT_FOUND
public static final MemberSelectorError USER_NOT_IN_TEAM
public static MemberSelectorError[] values()
for (MemberSelectorError c : MemberSelectorError.values()) System.out.println(c);
public static MemberSelectorError 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