public enum AlertStatus extends java.lang.Enum<AlertStatus>
Enum Constant and Description |
---|
DISMISSED
dismissed
|
IN_PROGRESS
in Progress
|
NEW_ALERT
new Alert
|
RESOLVED
resolved
|
UNEXPECTED_VALUE
For AlertStatus values that were not expected from the service
|
UNKNOWN
unknown
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
Modifier and Type | Method and Description |
---|---|
static AlertStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlertStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertStatus UNKNOWN
public static final AlertStatus NEW_ALERT
public static final AlertStatus IN_PROGRESS
public static final AlertStatus RESOLVED
public static final AlertStatus DISMISSED
public static final AlertStatus UNKNOWN_FUTURE_VALUE
public static final AlertStatus UNEXPECTED_VALUE
public static AlertStatus[] values()
for (AlertStatus c : AlertStatus.values()) System.out.println(c);
public static AlertStatus 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