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