com.liferay.portal.security.auth
Enum AuthVerifierResult.State
java.lang.Object
java.lang.Enum<AuthVerifierResult.State>
com.liferay.portal.security.auth.AuthVerifierResult.State
- All Implemented Interfaces:
- Serializable, Comparable<AuthVerifierResult.State>
- Enclosing class:
- AuthVerifierResult
public static enum AuthVerifierResult.State
- extends Enum<AuthVerifierResult.State>
NOT_APPLICABLE
public static final AuthVerifierResult.State NOT_APPLICABLE
INVALID_CREDENTIALS
public static final AuthVerifierResult.State INVALID_CREDENTIALS
SUCCESS
public static final AuthVerifierResult.State SUCCESS
values
public static AuthVerifierResult.State[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (AuthVerifierResult.State c : AuthVerifierResult.State.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static AuthVerifierResult.State valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null