public enum ReportEntryType extends java.lang.Enum<ReportEntryType>
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
flakyXmlTag |
private java.lang.String |
rerunXmlTag |
private java.lang.String |
xmlTag |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getFlakyXmlTag() |
java.lang.String |
getRerunXmlTag() |
java.lang.String |
getXmlTag() |
static ReportEntryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportEntryType ERROR
public static final ReportEntryType FAILURE
public static final ReportEntryType SKIPPED
public static final ReportEntryType SUCCESS
private final java.lang.String xmlTag
private final java.lang.String flakyXmlTag
private final java.lang.String rerunXmlTag
public static ReportEntryType[] values()
for (ReportEntryType c : ReportEntryType.values()) System.out.println(c);
public static ReportEntryType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getXmlTag()
public java.lang.String getFlakyXmlTag()
public java.lang.String getRerunXmlTag()