Class 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 signal
      java.util.HashMap<java.lang.String,​java.lang.Object> SignalData
      A hash map from FieldName -> Value of the signal data contained in the measurement
      long 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
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • UnixTimeMs

        public long UnixTimeMs
        Unix Time in milliseconds
      • SignalData

        public java.util.HashMap<java.lang.String,​java.lang.Object> SignalData
        A hash map from FieldName -> Value of the signal data contained in the measurement
    • 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