public enum ValidationKeyType extends java.lang.Enum<ValidationKeyType>
| Enum Constant and Description |
|---|
EMAIL_CHANGE
E-mail change confirmation
|
FORGOT_PASSWORD
Forgot password
|
REGISTRATION
User registration confirmation
|
| Modifier and Type | Method and Description |
|---|---|
static ValidationKeyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValidationKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationKeyType REGISTRATION
public static final ValidationKeyType EMAIL_CHANGE
public static final ValidationKeyType FORGOT_PASSWORD
public static ValidationKeyType[] values()
for (ValidationKeyType c : ValidationKeyType.values()) System.out.println(c);
public static ValidationKeyType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null