public static enum Util.Status extends Enum<Util.Status>
| Enum Constant and Description |
|---|
FAILED |
MISSING |
PASSED |
PENDING |
SKIPPED |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static Util.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Util.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Util.Status PASSED
public static final Util.Status FAILED
public static final Util.Status SKIPPED
public static final Util.Status UNDEFINED
public static final Util.Status MISSING
public static final Util.Status PENDING
public static Util.Status[] values()
for (Util.Status c : Util.Status.values()) System.out.println(c);
public static Util.Status valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All Rights Reserved.