@API(value=Internal) public enum Details extends Enum<Details>
Enum Constant and Description |
---|
FLAT
Test plan execution details are rendered in a flat, line-by-line mode.
|
NONE
No test plan execution details are printed.
|
TREE
Test plan execution details are rendered as a simple tree.
|
VERBOSE
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
Return lower case
Enum.name for easier usage in help text for
available options. |
static Details |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Details[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Details NONE
public static final Details FLAT
public static final Details TREE
public static final Details VERBOSE
public static Details[] values()
for (Details c : Details.values()) System.out.println(c);
public static Details 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 null