@Beta public enum Criticality extends java.lang.Enum<Criticality>
| Enum Constant and Description |
|---|
BUSINESS_CRITICAL
If not available, the service will continue to operate, but we are loosing money / serving less features
|
FUNCTIONAL_CRITICAL
If not available, we will not have too much trouble in the near future.
|
MISSION_CRITICAL
If not available, this service is unable to operate.
|
NON_CRITICAL
Less important stuff.
|
NOT_SPECIFIED
Default value if not criticality was specified.
|
| Modifier and Type | Method and Description |
|---|---|
static Criticality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Criticality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Criticality MISSION_CRITICAL
public static final Criticality BUSINESS_CRITICAL
public static final Criticality FUNCTIONAL_CRITICAL
public static final Criticality NON_CRITICAL
public static final Criticality NOT_SPECIFIED
public static Criticality[] values()
for (Criticality c : Criticality.values()) System.out.println(c);
public static Criticality 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