public enum AuthenticationResult extends Enum<AuthenticationResult>
| Enum Constant and Description |
|---|
FAILURE |
PASSWORD_CHANGE_REQUIRED |
SUCCESS |
TOO_MANY_ATTEMPTS |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationResult SUCCESS
public static final AuthenticationResult FAILURE
public static final AuthenticationResult TOO_MANY_ATTEMPTS
public static final AuthenticationResult PASSWORD_CHANGE_REQUIRED
public static AuthenticationResult[] values()
for (AuthenticationResult c : AuthenticationResult.values()) System.out.println(c);
public static AuthenticationResult 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 © 2002–2017 The Neo4j Graph Database Project. All rights reserved.