Liferay 6.2-ce-ga5

com.liferay.portal.security.auth
Enum AuthVerifierResult.State

java.lang.Object
  extended by java.lang.Enum<AuthVerifierResult.State>
      extended by 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>


Enum Constant Summary
INVALID_CREDENTIALS
           
NOT_APPLICABLE
           
SUCCESS
           
 
Method Summary
static AuthVerifierResult.State valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AuthVerifierResult.State[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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

Liferay 6.2-ce-ga5