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