Enum Class ReportEntryType

java.lang.Object
java.lang.Enum<ReportEntryType>
org.apache.maven.plugin.surefire.report.ReportEntryType
All Implemented Interfaces:
Serializable, Comparable<ReportEntryType>, Constable

public enum ReportEntryType extends Enum<ReportEntryType>
Type of an entry in the report
  • Enum Constant Details

  • Field Details

    • xmlTag

      private final String xmlTag
    • flakyXmlTag

      private final String flakyXmlTag
    • rerunXmlTag

      private final String rerunXmlTag
  • Constructor Details

    • ReportEntryType

      private ReportEntryType(String xmlTag, String flakyXmlTag, String rerunXmlTag)
  • Method Details

    • values

      public static ReportEntryType[] 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 ReportEntryType 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
    • getXmlTag

      public String getXmlTag()
    • getFlakyXmlTag

      public String getFlakyXmlTag()
    • getRerunXmlTag

      public String getRerunXmlTag()