Enum Class PitestOperation.Verbosity

java.lang.Object
java.lang.Enum<PitestOperation.Verbosity>
rife.bld.extension.PitestOperation.Verbosity
All Implemented Interfaces:
Serializable, Comparable<PitestOperation.Verbosity>, Constable
Enclosing class:
PitestOperation

public static enum PitestOperation.Verbosity extends Enum<PitestOperation.Verbosity>
Verbosity of output.
  • Enum Constant Details

    • DEFAULT

      public static final PitestOperation.Verbosity DEFAULT
      No minion output capture, spinner is shown, logs at the info level.
    • NO_SPINNER

      public static final PitestOperation.Verbosity NO_SPINNER
      No minion output capture, no spinner, logs at the info level (default).
    • QUIET

      public static final PitestOperation.Verbosity QUIET
      No minion output capture, no spinner, only severe errors are logged.
    • QUIET_WITH_PROGRESS

      public static final PitestOperation.Verbosity QUIET_WITH_PROGRESS
      No minion output capture, spinner is shown, only severe errors are logged.
    • VERBOSE

      public static final PitestOperation.Verbosity VERBOSE
      Captures minion output, no spinner, logs at the detailed level.
    • VERBOSE_NO_SPINNER

      public static final PitestOperation.Verbosity VERBOSE_NO_SPINNER
      Captures minion output, spinner is shown, logs at the detailed level.
  • Method Details

    • values

      public static PitestOperation.Verbosity[] 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

      public static PitestOperation.Verbosity valueOf(String name)
      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 name
      NullPointerException - if the argument is null