Class HistogramType

java.lang.Object
com.yahoo.statistics.HistogramType

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

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

    Modifier and Type
    Method
    Description
    Deprecated.
     

    Methods inherited from class java.lang.Object

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

    • REGULAR

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

      public static final HistogramType CUMULATIVE
      Deprecated.
      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
      Deprecated.
      Reverse cumulative histograms, that is, a given bucket contains the count for values corresponding to "itself" and all following buckets.
  • Method Details