public enum AlarmStateTransition extends java.lang.Enum<AlarmStateTransition>
| Enum Constant and Description |
|---|
Ack |
Active |
Clear |
Finished
This transition is used to indicate that an alarm event is no longer needed and should drop out of the system.
|
| Modifier and Type | Method and Description |
|---|---|
static AlarmStateTransition |
fromIntValue(int value) |
int |
getIntValue() |
static AlarmStateTransition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlarmStateTransition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlarmStateTransition Active
public static final AlarmStateTransition Clear
public static final AlarmStateTransition Ack
public static final AlarmStateTransition Finished
public static AlarmStateTransition[] values()
for (AlarmStateTransition c : AlarmStateTransition.values()) System.out.println(c);
public static AlarmStateTransition 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 nullpublic int getIntValue()
public static AlarmStateTransition fromIntValue(int value)