public enum ServiceUpdateSeverity extends java.lang.Enum<ServiceUpdateSeverity>
| Enum Constant and Description |
|---|
CRITICAL
critical
|
HIGH
high
|
NORMAL
normal
|
UNEXPECTED_VALUE
For ServiceUpdateSeverity values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static ServiceUpdateSeverity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceUpdateSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceUpdateSeverity NORMAL
public static final ServiceUpdateSeverity HIGH
public static final ServiceUpdateSeverity CRITICAL
public static final ServiceUpdateSeverity UNKNOWN_FUTURE_VALUE
public static final ServiceUpdateSeverity UNEXPECTED_VALUE
public static ServiceUpdateSeverity[] values()
for (ServiceUpdateSeverity c : ServiceUpdateSeverity.values()) System.out.println(c);
public static ServiceUpdateSeverity 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