Package gda.epics.connection
Enum Class EpicsController.MonitorType
- All Implemented Interfaces:
Serializable,Comparable<EpicsController.MonitorType>,Constable
- Enclosing class:
EpicsController
An enumerated type for DBR from EPICS.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCTRL - contains value, alarm status, alarm severity,units, display precision, graphic limits, and control limitsGR - contains value, alarm status, alarm severity,units, display precision, and graphic limitsNATIVE - the native DBR type, value onlySTS - contains value, alarm status, and alarm severityTIME - contains value, alarm status, alarm severity, and time stamp -
Method Summary
Modifier and TypeMethodDescriptionstatic EpicsController.MonitorTypeReturns the enum constant of this class with the specified name.static EpicsController.MonitorType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NATIVE
NATIVE - the native DBR type, value only -
STS
STS - contains value, alarm status, and alarm severity -
TIME
TIME - contains value, alarm status, alarm severity, and time stamp -
CTRL
CTRL - contains value, alarm status, alarm severity,units, display precision, graphic limits, and control limits -
GR
GR - contains value, alarm status, alarm severity,units, display precision, and graphic limits
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-