Enum Constant | 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 | Description |
---|---|---|
java.lang.String |
toString() |
Return lower case
Enum.name for easier usage in help text for
available options. |
static Details |
valueOf(java.lang.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(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 nullpublic java.lang.String toString()
Enum.name
for easier usage in help text for
available options.toString
in class java.lang.Enum<Details>