public enum CheckCredentialsResult extends Enum<CheckCredentialsResult>
Enum Constant and Description |
---|
CREDENTIALS_FAILED
Credentials failed
|
CREDENTIALS_OK
Credentials OK
|
USER_GOT_LOCKED
User got locked
|
Modifier and Type | Method and Description |
---|---|
static CheckCredentialsResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckCredentialsResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckCredentialsResult CREDENTIALS_OK
public static final CheckCredentialsResult CREDENTIALS_FAILED
public static final CheckCredentialsResult USER_GOT_LOCKED
public static CheckCredentialsResult[] values()
for (CheckCredentialsResult c : CheckCredentialsResult.values()) System.out.println(c);
public static CheckCredentialsResult 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 © 2019. All rights reserved.