public enum UserRequestType extends Enum<UserRequestType>
| Enum Constant and Description |
|---|
LOGIN |
LOGIN_UNATTENDED |
PASSWORD_RESET |
PASSWORD_SET |
UNLOCK_ACCOUNT |
| Modifier and Type | Method and Description |
|---|---|
static UserRequestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserRequestType PASSWORD_SET
public static final UserRequestType PASSWORD_RESET
public static final UserRequestType UNLOCK_ACCOUNT
public static final UserRequestType LOGIN
public static final UserRequestType LOGIN_UNATTENDED
public static UserRequestType[] values()
for (UserRequestType c : UserRequestType.values()) System.out.println(c);
public static UserRequestType 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 nullCopyright © 2021 BellaDati Inc.. All rights reserved.