public enum AnomalyFixStatus extends Enum<AnomalyFixStatus>
Enum Constant and Description |
---|
DID_NOT_START |
START_FAILED |
START_SUCCESSFULLY |
Modifier and Type | Method and Description |
---|---|
static AnomalyFixStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnomalyFixStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnomalyFixStatus DID_NOT_START
public static final AnomalyFixStatus START_SUCCESSFULLY
public static final AnomalyFixStatus START_FAILED
public static AnomalyFixStatus[] values()
for (AnomalyFixStatus c : AnomalyFixStatus.values()) System.out.println(c);
public static AnomalyFixStatus 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 null