Package rife.bld.extension
Enum Class PitestOperation.Verbosity
- All Implemented Interfaces:
Serializable,Comparable<PitestOperation.Verbosity>,Constable
- Enclosing class:
- PitestOperation
Verbosity of output.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNo minion output capture, spinner is shown, logs at the info level.No minion output capture, no spinner, logs at the info level (default).No minion output capture, no spinner, only severe errors are logged.No minion output capture, spinner is shown, only severe errors are logged.Captures minion output, no spinner, logs at the detailed level.Captures minion output, spinner is shown, logs at the detailed level. -
Method Summary
Modifier and TypeMethodDescriptionstatic PitestOperation.VerbosityReturns the enum constant of this class with the specified name.static PitestOperation.Verbosity[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
No minion output capture, spinner is shown, logs at the info level. -
NO_SPINNER
No minion output capture, no spinner, logs at the info level (default). -
QUIET
No minion output capture, no spinner, only severe errors are logged. -
QUIET_WITH_PROGRESS
No minion output capture, spinner is shown, only severe errors are logged. -
VERBOSE
Captures minion output, no spinner, logs at the detailed level. -
VERBOSE_NO_SPINNER
Captures minion output, spinner is shown, logs at the detailed level.
-
-
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
-