public final class Status extends ApiEnumeration<Status>
Status enumeration class defines the status result for a particular
check.
| Modifier and Type | Class and Description |
|---|---|
static class |
Status.Values
Native Java
enum representing this enumeration class. |
| Modifier and Type | Field and Description |
|---|---|
static Status |
ERROR
The check indicates an error.
|
static Status |
OK
The check indicates a success.
|
static Status |
RETRY
The check failed because of an intermittent error, for example a service is
overloaded.
|
static Status |
TIMEOUT
The check did not return in a timely manner.
|
static Status |
WARNING
The check indicates a warning.
|
| Modifier and Type | Method and Description |
|---|---|
Status.Values |
getEnumValue()
Returns a native Java
enum constant representing this enumeration
constant. |
boolean |
isUnknown()
Checks if this enumeration constant is unknown.
|
static Status |
valueOf(java.lang.String name)
Returns the enumeration constant for the specified name.
|
static Status[] |
values()
Retrieve all enumeration constants pre-defined by this enumeration class.
|
buildNameMap, equals, hashCode, name, toStringpublic static final Status OK
public static final Status WARNING
public static final Status TIMEOUT
public static final Status ERROR
public static final Status RETRY
public static Status[] values()
Additional instances might exist at runtime, for example to represent a
new constant added to this enumeration class in subsequent version of the
API. Such new constant is represented as instance of Status
but is not pre-defined.
null.public static Status valueOf(java.lang.String name)
If the name matches exactly the identifier used to declare an enumeration constant from this enumeration class, the constant in question will be returned.
Otherwise, a new instance of Status will be returned for the
specified name, which will not be one of the pre-defined constant
instances. Such new instance maps to the Status.Values._UNKNOWN
enum constant from the native Java enum.
name - The name of the constant to return. Must not be null.null.public boolean isUnknown()
valueOf(java.lang.String) and values().true if this constant is unknown, and false otherwise.public Status.Values getEnumValue()
enum constant representing this enumeration
constant. The result is useful for usual handling of Java enum,
for example it can be used in switch statements.
If this enumeration constant is unknown, then Status.Values._UNKNOWN
enum constant is returned.
The native Java enum is Status.Values.
enum constant. Never null.