public enum StackTraceLevel extends java.lang.Enum<StackTraceLevel>
Enum Constant and Description |
---|
ABBREVIATED
Use this to capture only a small part of stack traces
|
FULL
Use this to capture the entire stack trace
|
MINIMAL
Use this to capture only types and messages
|
Modifier and Type | Method and Description |
---|---|
static StackTraceLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StackTraceLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StackTraceLevel FULL
public static final StackTraceLevel ABBREVIATED
public static final StackTraceLevel MINIMAL
public static StackTraceLevel[] values()
for (StackTraceLevel c : StackTraceLevel.values()) System.out.println(c);
public static StackTraceLevel 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