public static enum Selftest.RunStatus extends Enum<Selftest.RunStatus>
| Enum Constant and Description |
|---|
NOT_AVAILABLE |
RUNNING |
| Modifier and Type | Method and Description |
|---|---|
static Selftest.RunStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Selftest.RunStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Selftest.RunStatus RUNNING
public static final Selftest.RunStatus NOT_AVAILABLE
public static Selftest.RunStatus[] values()
for (Selftest.RunStatus c : Selftest.RunStatus.values()) System.out.println(c);
public static Selftest.RunStatus 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 © 2013. All Rights Reserved.