public enum AuthProviderStatus extends Enum<AuthProviderStatus>
| Enum Constant and Description |
|---|
FAILED |
INVALID_CREDENTIALS |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static AuthProviderStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthProviderStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthProviderStatus SUCCESS
public static final AuthProviderStatus INVALID_CREDENTIALS
public static final AuthProviderStatus FAILED
public static AuthProviderStatus[] values()
for (AuthProviderStatus c : AuthProviderStatus.values()) System.out.println(c);
public static AuthProviderStatus 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 © 2014. All Rights Reserved.