| Constructor and Description |
|---|
FloatHistogram() |
| Modifier and Type | Method and Description |
|---|---|
void |
addValue(Float value)
Add a new value to the Histogram.
|
List<Bucket<Float>> |
getAllBuckets()
Return all of the buckets in the histogram
|
int |
getEntriesInRange(Float start,
Float end)
Get the number of values within a given range, including start and up to but not including end.
|
void |
removeValue(Float value)
Removes a value from the Histogram
|
public List<Bucket<Float>> getAllBuckets()
HistogramgetAllBuckets in interface Histogram<Float>public void addValue(Float value)
Histogrampublic void removeValue(Float value)
HistogramremoveValue in interface Histogram<Float>value - the value to removepublic int getEntriesInRange(Float start, Float end)
HistogramgetEntriesInRange in interface Histogram<Float>start - the inclusive start of the rangeend - the non-inclusive end of the rangeCopyright © 2017. All rights reserved.