public static enum AnomalyState.Status extends Enum<AnomalyState.Status>
Enum Constant and Description |
---|
ATTEMPTING_FIX |
CHECK_WITH_DELAY |
COMPLETENESS_NOT_READY |
DETECTED |
FIX_FAILED_TO_START |
FIX_STARTED |
IGNORED |
LOAD_MONITOR_NOT_READY |
Modifier and Type | Method and Description |
---|---|
static List<AnomalyState.Status> |
cachedValues()
Use this instead of values() because values() creates a new array each time.
|
static AnomalyState.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnomalyState.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnomalyState.Status DETECTED
public static final AnomalyState.Status IGNORED
public static final AnomalyState.Status ATTEMPTING_FIX
public static final AnomalyState.Status FIX_STARTED
public static final AnomalyState.Status FIX_FAILED_TO_START
public static final AnomalyState.Status CHECK_WITH_DELAY
public static final AnomalyState.Status LOAD_MONITOR_NOT_READY
public static final AnomalyState.Status COMPLETENESS_NOT_READY
public static AnomalyState.Status[] values()
for (AnomalyState.Status c : AnomalyState.Status.values()) System.out.println(c);
public static AnomalyState.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 nullpublic static List<AnomalyState.Status> cachedValues()