java.io.Serializable, java.lang.Comparable<TestStatus>public enum TestStatus extends java.lang.Enum<TestStatus>
| Enum Constant | Description |
|---|---|
ERROR |
|
FAILURE |
|
IGNORED |
|
IGNORED_ASSUMPTION |
|
OK |
| Modifier and Type | Method | Description |
|---|---|---|
static TestStatus |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static TestStatus[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestStatus OK
public static final TestStatus IGNORED
public static final TestStatus IGNORED_ASSUMPTION
public static final TestStatus FAILURE
public static final TestStatus ERROR
public static TestStatus[] values()
for (TestStatus c : TestStatus.values()) System.out.println(c);
public static TestStatus 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 nullCopyright © 2011–2018 Carrot Search s.c.. All rights reserved.