Class Observation<H>


  • public class Observation<H>
    extends java.lang.Object
    An individual historical observation on which to base future predictions.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      H observation
      the duration of the observed value, e.g.
      java.lang.Object[] payload
      additional information
      long timestamp
      time stamp of the occurrence of this observation
    • Constructor Summary

      Constructors 
      Constructor Description
      Observation()  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • timestamp

        public long timestamp
        time stamp of the occurrence of this observation
      • observation

        public H observation
        the duration of the observed value, e.g. the duration in ms (can be 0)
      • payload

        public java.lang.Object[] payload
        additional information
    • Constructor Detail

      • Observation

        public Observation()