public static enum ModuleCrash.CrashType extends java.lang.Enum<ModuleCrash.CrashType>
| Enum Constant and Description |
|---|
ANR |
DIVISION_BY_ZERO |
NULLPOINTER_EXCEPTION |
OOM |
RUNTIME_EXCEPTION |
STACK_OVERFLOW |
| Modifier and Type | Method and Description |
|---|---|
static ModuleCrash.CrashType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModuleCrash.CrashType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleCrash.CrashType STACK_OVERFLOW
public static final ModuleCrash.CrashType DIVISION_BY_ZERO
public static final ModuleCrash.CrashType OOM
public static final ModuleCrash.CrashType RUNTIME_EXCEPTION
public static final ModuleCrash.CrashType NULLPOINTER_EXCEPTION
public static final ModuleCrash.CrashType ANR
public static ModuleCrash.CrashType[] values()
for (ModuleCrash.CrashType c : ModuleCrash.CrashType.values()) System.out.println(c);
public static ModuleCrash.CrashType 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