public static enum HealthActionResult.ResultStatus extends java.lang.Enum<HealthActionResult.ResultStatus>
Modifier and Type | Method and Description |
---|---|
static HealthActionResult.ResultStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HealthActionResult.ResultStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HealthActionResult.ResultStatus OK
public static final HealthActionResult.ResultStatus SKIPPED
public static final HealthActionResult.ResultStatus FAILED
public static HealthActionResult.ResultStatus[] values()
for (HealthActionResult.ResultStatus c : HealthActionResult.ResultStatus.values()) System.out.println(c);
public static HealthActionResult.ResultStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null