public enum ItemStatus extends java.lang.Enum<ItemStatus>
| Enum Constant and Description |
|---|
CANCELLED |
FAILED |
INFO |
PASSED |
RESETED |
SKIPPED |
STOPPED |
WARN |
| Modifier and Type | Method and Description |
|---|---|
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 STOPPED
public static final ItemStatus SKIPPED
public static final ItemStatus RESETED
public static final ItemStatus CANCELLED
public static final ItemStatus INFO
public static final ItemStatus WARN
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 null