Class DoubleGauge.DoublePoint

    • Constructor Summary

      Constructors 
      Constructor Description
      DoublePoint()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract void add​(double amt)
      Adds the given value to the current value.
      abstract void set​(double val)
      Sets the given value.
      • Methods inherited from class java.lang.Object

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

      • DoublePoint

        public DoublePoint()
    • Method Detail

      • add

        public abstract void add​(double amt)
        Adds the given value to the current value. The values can be negative.
        Parameters:
        amt - the value to add
        Since:
        0.17
      • set

        public abstract void set​(double val)
        Sets the given value.
        Parameters:
        val - the new value.
        Since:
        0.17