Enum Class SensorAuxInfo
- All Implemented Interfaces:
Serializable
,Comparable<SensorAuxInfo>
,Constable
Defines Meterlink SensorAuxInfo data. This gives the auxiliary information about 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 ConstantDescriptionVoltage/current is AC.Voltage/current is AC+DC (CM83).Temperature is air temp.Temperature is condensation temp.Temperature is dry bulb temp.Voltage/current is DC.Temperature is dew point temp.Measurement is external.Measurement is internal.Invalid value.Temperature is IR reflected temp.Temperature is thermocouple type K temp.Not used.(Deprecated) This was actually peak max, moved to SensorMeasureInfo::PEAKMAX.(Deprecated) This was actually peak min, moved to SensorMeasureInfo::PEAKMIN.Power Factor (CM83).THD Total Harmonic Mode (CM83).LowPassFilter is applied before measument, intended for VariableFrequencyDrives (VFD)(CM83).Temperature is wet bulb temp.Mass fraction is wood moisture equivalent. -
Method Summary
Modifier and TypeMethodDescriptionstatic SensorAuxInfo
Returns the enum constant of this class with the specified name.static SensorAuxInfo[]
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. -
DC
Voltage/current is DC. -
AC
Voltage/current is AC. -
INTERNAL
Measurement is internal. -
EXTERNAL
Measurement is external. -
MIN_DEPR
(Deprecated) This was actually peak min, moved to SensorMeasureInfo::PEAKMIN. -
MAX_DEPR
(Deprecated) This was actually peak max, moved to SensorMeasureInfo::PEAKMAX. -
DEW
Temperature is dew point temp. -
AIR
Temperature is air temp. -
IR
Temperature is IR reflected temp. -
K
Temperature is thermocouple type K temp. -
COND
Temperature is condensation temp. -
DB
Temperature is dry bulb temp. -
WB
Temperature is wet bulb temp. -
WME
Mass fraction is wood moisture equivalent. -
AC_DC
Voltage/current is AC+DC (CM83). -
VFD
LowPassFilter is applied before measument, intended for VariableFrequencyDrives (VFD)(CM83). -
THD
THD Total Harmonic Mode (CM83). -
PF
Power Factor (CM83). -
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
-