- All Implemented Interfaces:
Serializable
,Comparable<Theme>
,Constable
- Since:
- 1.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal String
aborted()
final String
blank()
final String
end()
final String
entry()
final String
failed()
final String
root()
final String
skipped()
final String
status
(TestExecutionResult result) final String
final String
toString()
Return lower caseEnum.name()
for easier usage in help text for available options.static Theme
Returns the enum constant of this class with the specified name.static Theme
Returns the enum constant of this class with the specified name.static Theme[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.final String
vertical()
-
Enum Constant Details
-
ASCII
ASCII 7-bit characters form the tree branch.Example test plan execution tree:
+-- engine alpha | '-- container BEGIN | +-- test 00 [OK] | '-- test 01 [OK] '-- engine omega +-- container END | +-- test 10 [OK] | '-- test 11 [A] aborted '-- container FINAL +-- skipped [S] because '-- failing [X] BäMM
-
UNICODE
Unicode (extended ASCII) characters are used to display the test execution tree.Example test plan execution tree:
├─ engine alpha ✔ │ └─ container BEGIN ✔ │ ├─ test 00 ✔ │ └─ test 01 ✔ └─ engine omega ✔ ├─ container END ✔ │ ├─ test 10 ✔ │ └─ test 11 ■ aborted └─ container FINAL ✔ ├─ skipped ↷ because └─ failing ✘ BäMM
-
-
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
-
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:
charset
- 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
-
root
-
vertical
-
blank
-
entry
-
end
-
successful
-
aborted
-
failed
-
skipped
-
status
-
toString
Return lower caseEnum.name()
for easier usage in help text for available options.
-