public enum AlertSortAttribute extends Enum<AlertSortAttribute>
Enum Constant and Description |
---|
ORIGIN
The origin of the alert.
|
SEVERITY
The severity associated with alert.
|
STATE
The state of the alert.
|
SYSTEM
The system that created the alert.
|
TIMESTAMP
The time stamp associated with alert.
|
TOPIC
The topic of the alert.
|
Modifier and Type | Method and Description |
---|---|
static AlertSortAttribute |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlertSortAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertSortAttribute TIMESTAMP
public static final AlertSortAttribute SEVERITY
public static final AlertSortAttribute STATE
public static final AlertSortAttribute TOPIC
public static final AlertSortAttribute ORIGIN
public static final AlertSortAttribute SYSTEM
public static AlertSortAttribute[] values()
for (AlertSortAttribute c : AlertSortAttribute.values()) System.out.println(c);
public static AlertSortAttribute valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015. All Rights Reserved.