public enum LoggingLevel extends java.lang.Enum<LoggingLevel>
Enum Constant and Description |
---|
NORMAL
Log the start and end of tests.
|
QUIET
No Thucydides logging at all.
|
VERBOSE
Log the start and end of tests and test steps.
|
Modifier and Type | Method and Description |
---|---|
static LoggingLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LoggingLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggingLevel QUIET
public static final LoggingLevel NORMAL
public static final LoggingLevel VERBOSE
public static LoggingLevel[] values()
for (LoggingLevel c : LoggingLevel.values()) System.out.println(c);
public static LoggingLevel 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