Enum Class Parameter.Mode

java.lang.Object
java.lang.Enum<Parameter.Mode>
io.qameta.allure.model.Parameter.Mode
All Implemented Interfaces:
Serializable, Comparable<Parameter.Mode>, Constable
Enclosing class:
Parameter

public static enum Parameter.Mode extends Enum<Parameter.Mode>
The parameter render mode.
Since:
2.15
  • Enum Constant Details

    • HIDDEN

      public static final Parameter.Mode HIDDEN
      Completely hide parameter from report.
    • MASKED

      public static final Parameter.Mode MASKED
      Display parameter, but mask it's value.
    • DEFAULT

      public static final Parameter.Mode DEFAULT
      Default mode. Displays both parameter name and value.
  • Method Details

    • values

      public static Parameter.Mode[] 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 Parameter.Mode 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