public enum SdkErrorCode extends java.lang.Enum<SdkErrorCode>
| Enum Constant and Description |
|---|
FailedStartUriHandlerActivity
Failed to handle deep link URI
|
InvalidAccountId
Invalid account id (null or empty)
|
InvalidAppContext
Invalid application context
|
InvalidAppContextNoAppResouces
Application context does not have resources
|
Unknown
Unknown error
|
| Modifier and Type | Method and Description |
|---|---|
static SdkErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SdkErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SdkErrorCode InvalidAppContext
public static final SdkErrorCode InvalidAppContextNoAppResouces
public static final SdkErrorCode InvalidAccountId
public static final SdkErrorCode FailedStartUriHandlerActivity
public static final SdkErrorCode Unknown
public static SdkErrorCode[] values()
for (SdkErrorCode c : SdkErrorCode.values()) System.out.println(c);
public static SdkErrorCode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null