public enum StitchClientErrorCode extends Enum<StitchClientErrorCode>
| Enum Constant and Description |
|---|
COULD_NOT_LOAD_PERSISTED_AUTH_INFO |
COULD_NOT_PERSIST_AUTH_INFO |
LOGGED_OUT_DURING_REQUEST |
MUST_AUTHENTICATE_FIRST |
USER_NO_LONGER_VALID |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static StitchClientErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StitchClientErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StitchClientErrorCode LOGGED_OUT_DURING_REQUEST
public static final StitchClientErrorCode MUST_AUTHENTICATE_FIRST
public static final StitchClientErrorCode USER_NO_LONGER_VALID
public static final StitchClientErrorCode COULD_NOT_LOAD_PERSISTED_AUTH_INFO
public static final StitchClientErrorCode COULD_NOT_PERSIST_AUTH_INFO
public static StitchClientErrorCode[] values()
for (StitchClientErrorCode c : StitchClientErrorCode.values()) System.out.println(c);
public static StitchClientErrorCode 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 nullpublic String toString()
toString in class Enum<StitchClientErrorCode>