public static enum UserSignupManager.LostPasswordError extends Enum<UserSignupManager.LostPasswordError>
Enum Constant and Description |
---|
EMPTY_EMAIL
Lost password return code: the user provided have an empty email
|
NOT_CONNECTED
User not connected
|
POPULATION_UNKNOWN
Lost password return code: the population the user provided doesn't correspond to a user.
|
SEVERAL_USERS
Lost password return code: the informations the user provided match several users
|
TOKEN_EXPIRED
Token return code: a user provided a token, but it isn't valid anymore.
|
TOKEN_UNKNOWN
Token return code: a user provided a token, but it doesn't exist.
|
UNMODIFIABLE_USER_DIRECTORY
Lost password return code: the user provided belongs to an unmodifiable user directory
|
USER_UNKNOWN
Lost password return code: the login or e-mail the user provided doesn't correspond to a population.
|
Modifier and Type | Method and Description |
---|---|
static UserSignupManager.LostPasswordError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserSignupManager.LostPasswordError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserSignupManager.LostPasswordError NOT_CONNECTED
public static final UserSignupManager.LostPasswordError USER_UNKNOWN
public static final UserSignupManager.LostPasswordError POPULATION_UNKNOWN
public static final UserSignupManager.LostPasswordError UNMODIFIABLE_USER_DIRECTORY
public static final UserSignupManager.LostPasswordError EMPTY_EMAIL
public static final UserSignupManager.LostPasswordError SEVERAL_USERS
public static final UserSignupManager.LostPasswordError TOKEN_UNKNOWN
public static final UserSignupManager.LostPasswordError TOKEN_EXPIRED
public static UserSignupManager.LostPasswordError[] values()
for (UserSignupManager.LostPasswordError c : UserSignupManager.LostPasswordError.values()) System.out.println(c);
public static UserSignupManager.LostPasswordError 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