public static enum Intent.IntentError extends java.lang.Enum<Intent.IntentError>
| Enum Constant and Description |
|---|
ACTIVITY_WAS_NULL |
COULDNT_PARSE_CATEGORIES |
COULDNT_PARSE_EXTRAS |
INTENT_WAS_NULL |
JSON_EXCEPTION |
| Modifier and Type | Method and Description |
|---|---|
static Intent.IntentError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Intent.IntentError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Intent.IntentError COULDNT_PARSE_EXTRAS
public static final Intent.IntentError COULDNT_PARSE_CATEGORIES
public static final Intent.IntentError INTENT_WAS_NULL
public static final Intent.IntentError JSON_EXCEPTION
public static final Intent.IntentError ACTIVITY_WAS_NULL
public static Intent.IntentError[] values()
for (Intent.IntentError c : Intent.IntentError.values()) System.out.println(c);
public static Intent.IntentError 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