public static enum PluginResult.Status extends java.lang.Enum<PluginResult.Status>
Enum Constant and Description |
---|
CLASS_NOT_FOUND_EXCEPTION |
ERROR |
ILLEGAL_ACCESS_EXCEPTION |
INSTANTIATION_EXCEPTION |
INVALID_ACTION |
IO_EXCEPTION |
JSON_EXCEPTION |
MALFORMED_URL_EXCEPTION |
NO_RESULT |
OK |
Modifier and Type | Method and Description |
---|---|
static PluginResult.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PluginResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginResult.Status NO_RESULT
public static final PluginResult.Status OK
public static final PluginResult.Status CLASS_NOT_FOUND_EXCEPTION
public static final PluginResult.Status ILLEGAL_ACCESS_EXCEPTION
public static final PluginResult.Status INSTANTIATION_EXCEPTION
public static final PluginResult.Status MALFORMED_URL_EXCEPTION
public static final PluginResult.Status IO_EXCEPTION
public static final PluginResult.Status INVALID_ACTION
public static final PluginResult.Status JSON_EXCEPTION
public static final PluginResult.Status ERROR
public static PluginResult.Status[] values()
for (PluginResult.Status c : PluginResult.Status.values()) System.out.println(c);
public static PluginResult.Status 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