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