Class SignalMeasurement
- java.lang.Object
-
- com.trx.neon.api.neonMeasurement.model.definitions.SignalMeasurement
-
public class SignalMeasurement extends java.lang.Object
A signal measurement is a set of data keyed by the field name in the signal definition and representing a single measurement of a signal.
-
-
Field Summary
Fields Modifier and Type Field Description SignalKey
Key
Unique identifier for the signaljava.util.HashMap<java.lang.String,java.lang.Object>
SignalData
A hash map from FieldName -> Value of the signal data contained in the measurementlong
UnixTimeMs
Unix Time in milliseconds
-
Constructor Summary
Constructors Constructor Description SignalMeasurement(long unixTimeMs, SignalKey key, java.util.HashMap<java.lang.String,java.lang.Object> signalData)
This is used by the signal measurement builder Use the SignalMeasurementBuilder instead
-
-
-
Constructor Detail
-
SignalMeasurement
public SignalMeasurement(long unixTimeMs, SignalKey key, java.util.HashMap<java.lang.String,java.lang.Object> signalData)
This is used by the signal measurement builder Use the SignalMeasurementBuilder instead- See Also:
SignalMeasurementBuilder
-
-