Enum Class SensorQuantity
- All Implemented Interfaces:
Serializable
,Comparable<SensorQuantity>
,Constable
Defines Meterlink SensorQuantity data. This gives the information about sensor/channel measurement quantity.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionabsolute humidity - grams of water vapor per cubic meter volume of airm/s^2degreesfaradcoulombsiemensamperemeterelectric field - newtons per coulomb (N/C) or volts per meter (V/m)joulejoule per kilogramnewtonFREE_SLOThertzluxohmhenryINVALIDLASTluminous flux - lumenlumenmagnetic field - teslamagnetic flux - weberkgmass per mass fractionmass per volt fractionkilogram meters/second (kg m/s)Not mapped so far.unitless New with Meterlink 2.1.wattuseful (true) power (kW) to the total (apparent) power (kVA) - percentpascalthe absorbed dose, sometimes also known as the physical dose - gray (Gy) [1 J/kg], where 1 gray = 100 radthe biological dose, sometimes also known as the dose equivalent - sievertroentgen (R) and coulomb/kilogram (C/kg)radiation flux - W*m^2, or kg*s^3becquerel (Bq), where 1 becquerel = 1 radioactive decay per second = 2.703x10-11 Ci.ohmrelative humidity - percentrelative moisture - percentohmm/sKelvin or Celsius or Fahrenheitsecondsnewton metervolt per volt fractionvolt -
Method Summary
Modifier and TypeMethodDescriptionstatic SensorQuantity
Returns the enum constant of this class with the specified name.static SensorQuantity[]
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 -
CURRENT
ampere -
VOLTAGE
volt -
RESISTANCE
ohm -
REACTANCE
ohm -
IMPEDANCE
ohm -
CONDUCTANCE
siemens -
CAPACITANCE
farad -
INDUCTANCE
henry -
EL_FIELD
electric field - newtons per coulomb (N/C) or volts per meter (V/m) -
MAG_FIELD
magnetic field - tesla -
MAG_FLUX
magnetic flux - weber -
CHARGE
coulomb -
TEMPERATURE
Kelvin or Celsius or Fahrenheit -
FREE_SLOT
FREE_SLOT -
TIME
seconds -
FREQUENCY
hertz -
MASS
kg -
FORCE
newton -
PRESSURE
pascal -
MOMENTUM
kilogram meters/second (kg m/s) -
TORQUE
newton meter -
SPEED
m/s -
ACCELERATION
m/s^2 -
ENERGY
joule -
POWER
watt -
ENTHALPY
joule per kilogram -
REL_HUMIDITY
relative humidity - percent -
ABS_HUMIDITY
absolute humidity - grams of water vapor per cubic meter volume of air -
REL_MOISTURE
relative moisture - percent -
DISTANCE
meter -
ANGLE
degrees -
RADIOACTIVITY
becquerel (Bq), where 1 becquerel = 1 radioactive decay per second = 2.703x10-11 Ci. Ci is old unit 'curie' -
RAD_EXPOSURE
roentgen (R) and coulomb/kilogram (C/kg) -
RAD_ABS_DOSE
the absorbed dose, sometimes also known as the physical dose - gray (Gy) [1 J/kg], where 1 gray = 100 rad -
RAD_EQ_DOSE
the biological dose, sometimes also known as the dose equivalent - sievert -
MASS_MASS_FRAC
mass per mass fraction -
MASS_VOL_FRAC
mass per volt fraction -
VOL_VOL_FRAC
volt per volt fraction -
RAD_FLUX
radiation flux - W*m^2, or kg*s^3 -
LUM_FLUX
luminous flux - lumen -
LUM_INTENSITY
lumen -
ILLUMINANCE
lux -
POWER_FACTOR
useful (true) power (kW) to the total (apparent) power (kVA) - percent -
NONE
unitless New with Meterlink 2.1. -
NO_IMPL
Not mapped so far. -
ADMITTANCE
-
RPM
-
DUTY_CYCLE
-
TEST_VOLT
-
POLAR_INDEX
-
DAR
-
EBOND_TEST_VOLT
-
EBOND_TEST
-
MA20
-
PHASE
-
HARMONIC_LEV
-
HARMONIC_THD
-
CREST
-
QUALITY_FACT
-
DISSIPATION
-
ESR
-
AC_TESTER_LOAD
-
AC_TESTER_UNLOAD_VOLT
-
AC_TESTER_LOAD_VOLT
-
AC_TESTER_DROP
-
RECEPTACLE_TEST
-
AFCI
-
GFCI
-
GFCI_TRIP_CURR
-
GFCI_TRIP_TIME
-
EDP_TRIP_CURR
-
NEUTRAL_GROUND
-
HOT_IMP
-
NEUTRAL_IMP
-
GROUND_IMP
-
SHORT_CIRC_CURRENT
-
EMISSIVITY
-
RES_MOISTURE
-
GROUP
-
CAP_MOISTURE
-
SOIL_MOISTURE
-
AREA
-
VOLUME
-
EMF_FREQ
-
EMF_STRENGTH
-
WEIGHT
-
IRRADIANCE
-
COMPBEARING
-
PITCH
-
LATITUDE
-
LONGITUDE
-
ALTITUDE
-
LAST
LAST
-
-
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
-