public static enum HealthHistory.STATE extends Enum<HealthHistory.STATE>
| Enum Constant and Description |
|---|
FAILURE |
NOT_RUNNING |
REJOINED |
RUNNING |
SHUTDOWN |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static HealthHistory.STATE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HealthHistory.STATE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HealthHistory.STATE NOT_RUNNING
public static final HealthHistory.STATE RUNNING
public static final HealthHistory.STATE REJOINED
public static final HealthHistory.STATE FAILURE
public static final HealthHistory.STATE SHUTDOWN
public static HealthHistory.STATE[] values()
for (HealthHistory.STATE c : HealthHistory.STATE.values()) System.out.println(c);
public static HealthHistory.STATE 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 nullpublic String toString()
toString in class Enum<HealthHistory.STATE>Copyright © 2017. All rights reserved.