Enum Class Status

java.lang.Object
java.lang.Enum<Status>
com.aventstack.extentreports.Status
All Implemented Interfaces:
Serializable, Comparable<Status>, java.lang.constant.Constable

public enum Status extends Enum<Status>
  • Enum Constant Details

    • INFO

      public static final Status INFO
    • PASS

      public static final Status PASS
    • WARNING

      public static final Status WARNING
    • SKIP

      public static final Status SKIP
    • FAIL

      public static final Status FAIL
  • Method Details

    • values

      public static 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 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
    • getResolvedHierarchy

      public static List<Status> getResolvedHierarchy(List<Status> status)
    • max

      public static Status max(Collection<Status> status)
    • max

      public static Status max(Status s1, Status s2)
    • min

      public static Status min(Collection<Status> status)
    • i

      public static String i(String status)
    • i

      public static String i(Status status)
    • toLower

      public String toLower()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Status>