public enum MonitorMask extends Enum<MonitorMask>
MonitorMask specifies the event mask for epics events. When connecting to the PV the user always
connects with one of the masks to filter out unnecessary event changes.| Enum Constant and Description |
|---|
ALARM
Listen to changes in alarm state
|
ALL
Listen to all events
|
ARCHIVE
Listen to changes in value beyond archive limit
|
VALUE
Listen to changes in value and in alarms
|
| Modifier and Type | Method and Description |
|---|---|
int |
getMask() |
static MonitorMask |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MonitorMask[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MonitorMask VALUE
public static final MonitorMask ARCHIVE
public static final MonitorMask ALARM
public static final MonitorMask ALL
public static MonitorMask[] values()
for (MonitorMask c : MonitorMask.values()) System.out.println(c);
public static MonitorMask 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 nullpublic int getMask()
Copyright © 2023 European Spallation Source. All rights reserved.