Class Bucket
- java.lang.Object
-
- org.ow2.clif.analyze.statistics.util.data.Bucket
-
public class Bucket extends java.lang.ObjectBucket class stores the number of values (count) in a range defined by minThreshold (included) and maxThreshold (excluded). This object is used by LongStatistics to create an ArrayList of Bucket objects during frequency analysis.- Author:
- Xavier Spengler, Guy Vachet
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCount()longgetMaxThreshold()longgetMedian()longgetMinThreshold()voidsetMedian(long median)java.lang.StringtoString()
-
-
-
Method Detail
-
getCount
public int getCount()
-
getMinThreshold
public long getMinThreshold()
-
getMaxThreshold
public long getMaxThreshold()
-
setMedian
public void setMedian(long median)
-
getMedian
public long getMedian()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-