Class Bucket


  • @Beta
    public class Bucket
    extends java.lang.Object
    Chrome histogram bucket.
    • Constructor Summary

      Constructors 
      Constructor Description
      Bucket​(java.lang.Integer low, java.lang.Integer high, java.lang.Integer count)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Integer getCount()
      Number of samples.
      java.lang.Integer getHigh()
      Maximum value (exclusive).
      java.lang.Integer getLow()
      Minimum value (inclusive).
      • Methods inherited from class java.lang.Object

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

      • Bucket

        public Bucket​(java.lang.Integer low,
                      java.lang.Integer high,
                      java.lang.Integer count)
    • Method Detail

      • getLow

        public java.lang.Integer getLow()
        Minimum value (inclusive).
      • getHigh

        public java.lang.Integer getHigh()
        Maximum value (exclusive).
      • getCount

        public java.lang.Integer getCount()
        Number of samples.