Enum Class SensorMeasureInfo
- All Implemented Interfaces:
Serializable
,Comparable<SensorMeasureInfo>
,Constable
Defines Meterlink SensorMeasureInfo data. This gives more detailed measurement info of a sensor/channel.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAlarm from measuring device.Measuring device reports error.Measuring device are in HOLD.Invalid value.Not used.Maximum value.Mean value.Median value.Minimum value.Peak max value.Peak min value.Value is peak-to-peak.Root mean square value. -
Method Summary
Modifier and TypeMethodDescriptionstatic SensorMeasureInfo
Returns the enum constant of this class with the specified name.static SensorMeasureInfo[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
INVALID
Invalid value. -
MIN
Minimum value. -
MAX
Maximum value. -
PEAK_MIN
Peak min value. -
PEAK_MAX
Peak max value. -
PEAK_TO_PEAK
Value is peak-to-peak. -
MEAN
Mean value. -
RMS
Root mean square value. -
MEDIAN
Median value. -
ALARM
Alarm from measuring device. -
HOLD
Measuring device are in HOLD. -
ERROR
Measuring device reports error. -
LAST
Not used.
-
-
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
-