@Beta public enum Availability extends java.lang.Enum<Availability>
| Enum Constant and Description |
|---|
HIGH
Depending on your overall requirements, this might be something like 99.9% Availability
with MTTR < 10min or something similar.
|
LOW
Depending on your overall requirements, this might be something like 90.0% Availability
with MTTR < 1d or something similar.
|
MEDIUM
Depending on your overall requirements, this might be something like 99.0% Availability
with MTTR < 120min or something similar.
|
NOT_SPECIFIED
Default value if no availabilty requirements where specified.
|
| Modifier and Type | Method and Description |
|---|---|
static Availability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Availability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Availability HIGH
public static final Availability MEDIUM
public static final Availability LOW
public static final Availability NOT_SPECIFIED
public static Availability[] values()
for (Availability c : Availability.values()) System.out.println(c);
public static Availability 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