public enum ErrorVerbosity extends Enum<ErrorVerbosity>
Enum Constant and Description |
---|
STANDARD
Message from top level Exception is reported
|
TRACE
As VERBOSE plus complete bottom Exception stack trace is reported
|
VERBOSE
As STANDARD plus message from bottom level Exception is reported
|
Modifier and Type | Method and Description |
---|---|
static ErrorVerbosity |
valueOf(int ordinal) |
static ErrorVerbosity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorVerbosity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorVerbosity STANDARD
public static final ErrorVerbosity VERBOSE
public static final ErrorVerbosity TRACE
public static ErrorVerbosity[] values()
for (ErrorVerbosity c : ErrorVerbosity.values()) System.out.println(c);
public static ErrorVerbosity valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static ErrorVerbosity valueOf(int ordinal)