private static enum Throwables.State extends java.lang.Enum<Throwables.State>
Enum Constant and Description |
---|
DONE |
PROCESSING_OTHER_CODE |
PROCESSING_REFLECTION_CODE |
PROCESSING_TEST_FRAMEWORK_CODE |
Modifier and Type | Method and Description |
---|---|
protected abstract Throwables.State |
processLine(java.lang.String methodName)
Processes a stack trace element method name, possibly moving to a new state.
|
Throwables.State |
processStackTraceElement(java.lang.StackTraceElement element)
Processes a stack trace element, possibly moving to a new state.
|
static Throwables.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Throwables.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Throwables.State PROCESSING_OTHER_CODE
public static final Throwables.State PROCESSING_TEST_FRAMEWORK_CODE
public static final Throwables.State PROCESSING_REFLECTION_CODE
public static final Throwables.State DONE
public static Throwables.State[] values()
for (Throwables.State c : Throwables.State.values()) System.out.println(c);
public static Throwables.State 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 nullprotected abstract Throwables.State processLine(java.lang.String methodName)
public final Throwables.State processStackTraceElement(java.lang.StackTraceElement element)