public enum AuthenticateErrorCode extends Enum<AuthenticateErrorCode>
| Enum Constant and Description |
|---|
ENDPOINT_MISMATCH |
INTERNAL_ERROR |
INVALID_APPID |
INVALID_ENDPOINT |
INVALID_TOKEN |
ORIGIN_MISMATCH |
PROTOCOL_ERROR |
USERID_MISMATCH |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticateErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticateErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticateErrorCode INTERNAL_ERROR
public static final AuthenticateErrorCode INVALID_APPID
public static final AuthenticateErrorCode INVALID_ENDPOINT
public static final AuthenticateErrorCode USERID_MISMATCH
public static final AuthenticateErrorCode ENDPOINT_MISMATCH
public static final AuthenticateErrorCode ORIGIN_MISMATCH
public static final AuthenticateErrorCode INVALID_TOKEN
public static final AuthenticateErrorCode PROTOCOL_ERROR
public static AuthenticateErrorCode[] values()
for (AuthenticateErrorCode c : AuthenticateErrorCode.values()) System.out.println(c);
public static AuthenticateErrorCode 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.