Class HistogramType


  • public final class HistogramType
    extends java.lang.Object
    Enumeration of how a histogram should be represented from admin server.
    Author:
    Steinar Knutsen
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static HistogramType CUMULATIVE
      Cumulative histograms, that is, a given bucket contains the count for values corresponding to "itself" and all preceding buckets.
      static HistogramType REGULAR
      Basic histograms, each bucket is count representing the bucket's defined interval.
      static HistogramType REVERSE_CUMULATIVE
      Reverse cumulative histograms, that is, a given bucket contains the count for values corresponding to "itself" and all following buckets.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • REGULAR

        public static final HistogramType REGULAR
        Basic histograms, each bucket is count representing the bucket's defined interval.
      • CUMULATIVE

        public static final HistogramType CUMULATIVE
        Cumulative histograms, that is, a given bucket contains the count for values corresponding to "itself" and all preceding buckets.
      • REVERSE_CUMULATIVE

        public static final HistogramType REVERSE_CUMULATIVE
        Reverse cumulative histograms, that is, a given bucket contains the count for values corresponding to "itself" and all following buckets.
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object