public enum ApiHealthSummary extends Enum<ApiHealthSummary>
Enum Constant and Description |
---|
BAD
The subject is in bad health
|
CONCERNING
The subject is in concerning health
|
DISABLED
The health check for this subject has been disabled
|
GOOD
The subject is in good health
|
HISTORY_NOT_AVAILABLE
The health status was not captured at this past instant
|
NOT_AVAILABLE
The health status cannot be determined
|
Modifier and Type | Method and Description |
---|---|
static ApiHealthSummary |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiHealthSummary[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiHealthSummary DISABLED
public static final ApiHealthSummary HISTORY_NOT_AVAILABLE
public static final ApiHealthSummary NOT_AVAILABLE
public static final ApiHealthSummary GOOD
public static final ApiHealthSummary CONCERNING
public static final ApiHealthSummary BAD
public static ApiHealthSummary[] values()
for (ApiHealthSummary c : ApiHealthSummary.values()) System.out.println(c);
public static ApiHealthSummary 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 nullCopyright © Cloudera, Inc. Released under Apache License, Version 2.0.