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