Class Histogram.Entry

  • Enclosing class:
    Histogram

    public class Histogram.Entry
    extends Object
    A Histogram Entry captures the low and high bounds for each bucket along with the number of entries in the bucket. NOTE: All the buckets except for the last are [low, high) the last bucket is [low,high].
    • Constructor Summary

      Constructors 
      Constructor Description
      Entry​(double lowCut, double highCut)  
    • Constructor Detail

      • Entry

        public Entry​(double lowCut,
                     double highCut)
    • Method Detail

      • getLow

        public String getLow()
      • getHigh

        public String getHigh()
      • getLowCut

        public double getLowCut()
      • getHighCut

        public double getHighCut()
      • getCount

        public long getCount()
      • setCount

        public void setCount​(long count)