Interface IDtoBooleanDataPoint

All Known Implementing Classes:
DtoBooleanDataPoint

public interface IDtoBooleanDataPoint
Single data point with timestamp and boolean value.
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Detection timestamp of this data point.
    boolean
    Boolean value of this data point.
    void
    setTimestamp(long timestamp)
    Detection timestamp of this data point.
    void
    setValue(boolean value)
    Boolean value of this data point.
  • Method Details

    • getTimestamp

      long getTimestamp()
      Detection timestamp of this data point.
    • setTimestamp

      void setTimestamp(long timestamp)
      Detection timestamp of this data point.
    • getValue

      boolean getValue()
      Boolean value of this data point.
    • setValue

      void setValue(boolean value)
      Boolean value of this data point.