public enum ItemStatus extends java.lang.Enum<ItemStatus>
| Enum Constant and Description |
|---|
BLOCKED
Marks in blocked tests.
|
FAILED
Marks tests that have some failed checks.
|
INPROGRESS
Marks in progress tests.
|
PASSED
Marks passed tests.
|
SKIPPED
Marks skipped tests.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
value()
Value string.
|
static ItemStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ItemStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemStatus PASSED
public static final ItemStatus FAILED
public static final ItemStatus SKIPPED
public static final ItemStatus INPROGRESS
public static final ItemStatus BLOCKED
public static ItemStatus[] values()
for (ItemStatus c : ItemStatus.values()) System.out.println(c);
public static ItemStatus 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 value()