static enum DefaultReporterFactory.TestResultType extends java.lang.Enum<DefaultReporterFactory.TestResultType>
Enum Constant and Description |
---|
error |
failure |
flake |
skipped |
success |
unknown |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
logPrefix |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLogPrefix() |
static DefaultReporterFactory.TestResultType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DefaultReporterFactory.TestResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultReporterFactory.TestResultType error
public static final DefaultReporterFactory.TestResultType failure
public static final DefaultReporterFactory.TestResultType flake
public static final DefaultReporterFactory.TestResultType success
public static final DefaultReporterFactory.TestResultType skipped
public static final DefaultReporterFactory.TestResultType unknown
public static DefaultReporterFactory.TestResultType[] values()
for (DefaultReporterFactory.TestResultType c : DefaultReporterFactory.TestResultType.values()) System.out.println(c);
public static DefaultReporterFactory.TestResultType 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 getLogPrefix()