public enum AlarmSeverity extends java.lang.Enum<AlarmSeverity>
| Enum Constant and Description |
|---|
INVALID_ALARM |
MAJOR_ALARM |
MINOR_ALARM |
NO_ALARM |
| Modifier and Type | Method and Description |
|---|---|
static AlarmSeverity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlarmSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlarmSeverity NO_ALARM
public static final AlarmSeverity MINOR_ALARM
public static final AlarmSeverity MAJOR_ALARM
public static final AlarmSeverity INVALID_ALARM
public static AlarmSeverity[] values()
for (AlarmSeverity c : AlarmSeverity.values()) System.out.println(c);
public static AlarmSeverity 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