Enum Class Details
- All Implemented Interfaces:
Serializable
,Comparable<Details>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTest plan execution details are rendered in a flat, line-by-line mode.No test plan execution details are printed.Print summary table of counts only.Test plan execution events are rendered as they occur in a concise format.Test plan execution details are rendered as a simple tree. -
Method Summary
Modifier and TypeMethodDescriptiontoString()
Return lower caseEnum.name()
for easier usage in help text for available options.static Details
Returns the enum constant of this class with the specified name.static Details[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
No test plan execution details are printed. -
SUMMARY
Print summary table of counts only. -
FLAT
Test plan execution details are rendered in a flat, line-by-line mode. -
TREE
Test plan execution details are rendered as a simple tree. -
VERBOSE
-
TESTFEED
Test plan execution events are rendered as they occur in a concise format.- Since:
- 1.10
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
Return lower caseEnum.name()
for easier usage in help text for available options.
-