public static enum LoginProcessBean.State extends Enum<LoginProcessBean.State>
| Enum Constant and Description |
|---|
FORCED_PASSWORD_CHANGE |
LOGGED_IN |
LOGGING_IN |
NOWHERE |
| Modifier and Type | Method and Description |
|---|---|
static LoginProcessBean.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoginProcessBean.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoginProcessBean.State NOWHERE
public static final LoginProcessBean.State LOGGING_IN
public static final LoginProcessBean.State FORCED_PASSWORD_CHANGE
public static final LoginProcessBean.State LOGGED_IN
public static LoginProcessBean.State[] values()
for (LoginProcessBean.State c : LoginProcessBean.State.values()) System.out.println(c);
public static LoginProcessBean.State 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. All rights reserved.