public enum HealthCheckState extends java.lang.Enum<HealthCheckState>
| Enum Constant and Description |
|---|
AVAILABLE
The health check state that indicates that the associated server is fully
available for use.
|
DEGRADED
The health check state that indicates that the associated server is in a
degraded state and should be avoided if another server may be more
suitable.
|
UNAVAILABLE
The health check state that indicates that the associated server is not
available and must not be used.
|
| Modifier and Type | Method and Description |
|---|---|
static HealthCheckState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HealthCheckState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HealthCheckState AVAILABLE
public static final HealthCheckState DEGRADED
public static final HealthCheckState UNAVAILABLE
public static HealthCheckState[] values()
for (HealthCheckState c : HealthCheckState.values()) System.out.println(c);
public static HealthCheckState 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