public static enum UserSessionModel.AuthenticatorStatus extends Enum<UserSessionModel.AuthenticatorStatus>
| Enum Constant and Description |
|---|
ATTEMPTED |
SETUP_REQUIRED |
SKIPPED |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static UserSessionModel.AuthenticatorStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserSessionModel.AuthenticatorStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserSessionModel.AuthenticatorStatus SUCCESS
public static final UserSessionModel.AuthenticatorStatus SETUP_REQUIRED
public static final UserSessionModel.AuthenticatorStatus ATTEMPTED
public static final UserSessionModel.AuthenticatorStatus SKIPPED
public static UserSessionModel.AuthenticatorStatus[] values()
for (UserSessionModel.AuthenticatorStatus c : UserSessionModel.AuthenticatorStatus.values()) System.out.println(c);
public static UserSessionModel.AuthenticatorStatus 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 © 2015 JBoss by Red Hat. All rights reserved.