public enum AlarmAction extends Enum<AlarmAction>
| Modifier and Type | Method and Description |
|---|---|
static AlarmAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlarmAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlarmAction TRIGGER
public static final AlarmAction PROCESS
public static final AlarmAction IGNORE
public static AlarmAction[] values()
for (AlarmAction c : AlarmAction.values()) System.out.println(c);
public static AlarmAction 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 © 2024. All rights reserved.