Enum Class LogMessage.Status

java.lang.Object
java.lang.Enum<LogMessage.Status>
de.qytera.qtaf.core.log.model.message.LogMessage.Status
All Implemented Interfaces:
Serializable, Comparable<LogMessage.Status>, Constable
Enclosing class:
LogMessage

public static enum LogMessage.Status extends Enum<LogMessage.Status>
Step status.
  • Enum Constant Details

    • PENDING

      public static final LogMessage.Status PENDING
      Status is currently not know.
    • SKIPPED

      public static final LogMessage.Status SKIPPED
      The step's execution was skipped.
    • PASSED

      public static final LogMessage.Status PASSED
      Status of passed assertions.
    • FAILED

      public static final LogMessage.Status FAILED
      Status of failed assertions.
  • Method Details

    • values

      public static LogMessage.Status[] 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 LogMessage.Status 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