A C D E G H I L M N O P R S T V

A

AbstractHistogram - Class in org.HdrHistogram
A High Dynamic Range (HDR) Histogram
AbstractHistogram(long, long, int) - Constructor for class org.HdrHistogram.AbstractHistogram
Construct a Histogram given the Lowest and Highest values to be tracked and a number of significant decimal digits.
add(AbstractHistogram) - Method in class org.HdrHistogram.AbstractHistogram
Add the contents of another histogram to this one.
add(AbstractHistogram) - Method in class org.HdrHistogram.SynchronizedHistogram
 
addWhileCorrectingForCoordinatedOmission(AbstractHistogram, long) - Method in class org.HdrHistogram.AbstractHistogram
Add the contents of another histogram to this one, while correcting the incoming data for coordinated omission.
allValues() - Method in class org.HdrHistogram.HistogramData
Provide a means of iterating through all histogram values using the finest granularity steps supported by the underlying representation.
AllValuesIterator - Class in org.HdrHistogram
Used for iterating through histogram values using the finest granularity steps supported by the underlying representation.
AllValuesIterator(AbstractHistogram) - Constructor for class org.HdrHistogram.AllValuesIterator
 
AtomicHistogram - Class in org.HdrHistogram
A High Dynamic Range (HDR) Histogram using atomic long count type
AtomicHistogram(long, int) - Constructor for class org.HdrHistogram.AtomicHistogram
Construct a AtomicHistogram given the Highest value to be tracked and a number of significant decimal digits.
AtomicHistogram(long, long, int) - Constructor for class org.HdrHistogram.AtomicHistogram
Construct a AtomicHistogram given the Lowest and Highest values to be tracked and a number of significant decimal digits.

C

copy() - Method in class org.HdrHistogram.AbstractHistogram
Create a copy of this histogram, complete with data and everything.
copy() - Method in class org.HdrHistogram.AtomicHistogram
 
copy() - Method in class org.HdrHistogram.Histogram
 
copy() - Method in class org.HdrHistogram.IntHistogram
 
copy() - Method in class org.HdrHistogram.ShortHistogram
 
copy() - Method in class org.HdrHistogram.SynchronizedHistogram
 
copyCorrectedForCoordinatedOmission(long) - Method in class org.HdrHistogram.AbstractHistogram
Get a copy of this histogram, corrected for coordinated omission.
copyCorrectedForCoordinatedOmission(long) - Method in class org.HdrHistogram.AtomicHistogram
 
copyCorrectedForCoordinatedOmission(long) - Method in class org.HdrHistogram.Histogram
 
copyCorrectedForCoordinatedOmission(long) - Method in class org.HdrHistogram.IntHistogram
 
copyCorrectedForCoordinatedOmission(long) - Method in class org.HdrHistogram.ShortHistogram
 
copyCorrectedForCoordinatedOmission(long) - Method in class org.HdrHistogram.SynchronizedHistogram
 
copyInto(AbstractHistogram) - Method in class org.HdrHistogram.AbstractHistogram
Copy this histogram into the target histogram, overwriting it's contents.
copyIntoCorrectedForCoordinatedOmission(AbstractHistogram, long) - Method in class org.HdrHistogram.AbstractHistogram
Copy this histogram, corrected for coordinated omission, into the target histogram, overwriting it's contents.

D

decodeFromByteBuffer(ByteBuffer, long) - Static method in class org.HdrHistogram.AtomicHistogram
Construct a new histogram by decoding it from a ByteBuffer.
decodeFromByteBuffer(ByteBuffer, long) - Static method in class org.HdrHistogram.Histogram
Construct a new histogram by decoding it from a ByteBuffer.
decodeFromByteBuffer(ByteBuffer, long) - Static method in class org.HdrHistogram.IntHistogram
Construct a new histogram by decoding it from a ByteBuffer.
decodeFromByteBuffer(ByteBuffer, long) - Static method in class org.HdrHistogram.ShortHistogram
Construct a new histogram by decoding it from a ByteBuffer.
decodeFromByteBuffer(ByteBuffer, long) - Static method in class org.HdrHistogram.SynchronizedHistogram
Construct a new histogram by decoding it from a ByteBuffer.
decodeFromCompressedByteBuffer(ByteBuffer, long) - Static method in class org.HdrHistogram.AtomicHistogram
Construct a new histogram by decoding it from a compressed form in a ByteBuffer.
decodeFromCompressedByteBuffer(ByteBuffer, long) - Static method in class org.HdrHistogram.Histogram
Construct a new histogram by decoding it from a compressed form in a ByteBuffer.
decodeFromCompressedByteBuffer(ByteBuffer, long) - Static method in class org.HdrHistogram.IntHistogram
Construct a new histogram by decoding it from a compressed form in a ByteBuffer.
decodeFromCompressedByteBuffer(ByteBuffer, long) - Static method in class org.HdrHistogram.ShortHistogram
Construct a new histogram by decoding it from a compressed form in a ByteBuffer.
decodeFromCompressedByteBuffer(ByteBuffer, long) - Static method in class org.HdrHistogram.SynchronizedHistogram
Construct a new histogram by decoding it from a compressed form in a ByteBuffer.

E

encodeIntoByteBuffer(ByteBuffer) - Method in class org.HdrHistogram.AbstractHistogram
Encode this histogram into a ByteBuffer
encodeIntoCompressedByteBuffer(ByteBuffer, int) - Method in class org.HdrHistogram.AbstractHistogram
Encode this histogram in compressed form into a byte array
encodeIntoCompressedByteBuffer(ByteBuffer) - Method in class org.HdrHistogram.AbstractHistogram
Encode this histogram in compressed form into a byte array
equals(Object) - Method in class org.HdrHistogram.AbstractHistogram
Determine if this histogram is equivalent to another.

G

getCountAddedInThisIterationStep() - Method in class org.HdrHistogram.HistogramIterationValue
 
getCountAtValue(long) - Method in class org.HdrHistogram.HistogramData
Get the count of recorded values at a specific value
getCountAtValueIteratedTo() - Method in class org.HdrHistogram.HistogramIterationValue
 
getCountBetweenValues(long, long) - Method in class org.HdrHistogram.HistogramData
Get the count of recorded values within a range of value levels.
getEndTimeStamp() - Method in class org.HdrHistogram.AbstractHistogram
get the end time stamp [optionally] stored with this histogram
getEstimatedFootprintInBytes() - Method in class org.HdrHistogram.AbstractHistogram
Provide a (conservatively high) estimate of the Histogram's total footprint in bytes
getHighestTrackableValue() - Method in class org.HdrHistogram.AbstractHistogram
get the configured highestTrackableValue
getHistogramData() - Method in class org.HdrHistogram.AbstractHistogram
Provide access to the histogram's data set.
getLowestTrackableValue() - Method in class org.HdrHistogram.AbstractHistogram
get the configured lowestTrackableValue
getMaxValue() - Method in class org.HdrHistogram.HistogramData
Get the highest recorded value level in the histogram
getMean() - Method in class org.HdrHistogram.HistogramData
Get the computed mean value of all recorded values in the histogram
getMinValue() - Method in class org.HdrHistogram.HistogramData
Get the lowest recorded value level in the histogram
getNeededByteBufferCapacity() - Method in class org.HdrHistogram.AbstractHistogram
Get the capacity needed to encode this histogram into a ByteBuffer
getNumberOfSignificantValueDigits() - Method in class org.HdrHistogram.AbstractHistogram
get the configured numberOfSignificantValueDigits
getPercentile() - Method in class org.HdrHistogram.HistogramIterationValue
 
getPercentileAtOrBelowValue(long) - Method in class org.HdrHistogram.HistogramData
Get the percentile at a given value
getPercentileLevelIteratedTo() - Method in class org.HdrHistogram.HistogramIterationValue
 
getStartTimeSec() - Method in class org.HdrHistogram.HistogramLogReader
get the latest start time found in the file so far (or 0.0), per the log file format explained above.
getStartTimeStamp() - Method in class org.HdrHistogram.AbstractHistogram
get the start time stamp [optionally] stored with this histogram
getStdDeviation() - Method in class org.HdrHistogram.HistogramData
Get the computed standard deviation of all recorded values in the histogram
getTotalCount() - Method in class org.HdrHistogram.HistogramData
The the total count of recorded values in the histogram data
getTotalCountToThisValue() - Method in class org.HdrHistogram.HistogramIterationValue
 
getTotalValueToThisValue() - Method in class org.HdrHistogram.HistogramIterationValue
 
getValueAtPercentile(double) - Method in class org.HdrHistogram.HistogramData
Get the value at a given percentile
getValueIteratedFrom() - Method in class org.HdrHistogram.HistogramIterationValue
 
getValueIteratedTo() - Method in class org.HdrHistogram.HistogramIterationValue
 

H

hasNext() - Method in class org.HdrHistogram.LinearIterator
 
hasNext() - Method in class org.HdrHistogram.LogarithmicIterator
 
hasNext() - Method in class org.HdrHistogram.PercentileIterator
 
hasOverflowed() - Method in class org.HdrHistogram.AbstractHistogram
Determine if this histogram had any of it's value counts overflow.
highestEquivalentValue(long) - Method in class org.HdrHistogram.AbstractHistogram
Get the highest value that is equivalent to the given value within the histogram's resolution.
Histogram - Class in org.HdrHistogram
A High Dynamic Range (HDR) Histogram
Histogram(long, int) - Constructor for class org.HdrHistogram.Histogram
Construct a Histogram given the Highest value to be tracked and a number of significant decimal digits.
Histogram(long, long, int) - Constructor for class org.HdrHistogram.Histogram
Construct a Histogram given the Lowest and Highest values to be tracked and a number of significant decimal digits.
HistogramData - Class in org.HdrHistogram
Provides iteration capabilities for a histogram's data set, as well as access to common statistics information.
HistogramData.AllValues - Class in org.HdrHistogram
An Iterable<HistogramIterationValue> through the histogram using a AllValuesIterator
HistogramData.LinearBucketValues - Class in org.HdrHistogram
An Iterable<HistogramIterationValue> through the histogram using a LinearIterator
HistogramData.LogarithmicBucketValues - Class in org.HdrHistogram
An Iterable<HistogramIterationValue> through the histogram using a LogarithmicIterator
HistogramData.Percentiles - Class in org.HdrHistogram
An Iterable<HistogramIterationValue> through the histogram using a PercentileIterator
HistogramData.RecordedValues - Class in org.HdrHistogram
An Iterable<HistogramIterationValue> through the histogram using a RecordedValuesIterator
HistogramIterationValue - Class in org.HdrHistogram
Represents a value point iterated through in a Histogram, with associated stats.
HistogramLogReader - Class in org.HdrHistogram
A histogram log reader.
HistogramLogReader(String) - Constructor for class org.HdrHistogram.HistogramLogReader
Constructs a new HistogramLogReader that produces intervals read from the specified file name.
HistogramLogReader(InputStream) - Constructor for class org.HdrHistogram.HistogramLogReader
Constructs a new HistogramLogReader that produces intervals read from the specified InputStream.
HistogramLogReader(File) - Constructor for class org.HdrHistogram.HistogramLogReader
Constructs a new HistogramLogReader that produces intervals read from the specified file.
HistogramLogWriter - Class in org.HdrHistogram
A histogram log writer.
HistogramLogWriter(String) - Constructor for class org.HdrHistogram.HistogramLogWriter
Constructs a new HistogramLogWriter around a newly created file with the specified file name.
HistogramLogWriter(File) - Constructor for class org.HdrHistogram.HistogramLogWriter
Constructs a new HistogramLogWriter that will write into the specified file.
HistogramLogWriter(OutputStream) - Constructor for class org.HdrHistogram.HistogramLogWriter
Constructs a new HistogramLogWriter that will write into the specified output stream.
HistogramLogWriter(PrintStream) - Constructor for class org.HdrHistogram.HistogramLogWriter
Constructs a new HistogramLogWriter that will write into the specified print stream.

I

IntHistogram - Class in org.HdrHistogram
A High Dynamic Range (HDR) Histogram using an int count type
IntHistogram(long, int) - Constructor for class org.HdrHistogram.IntHistogram
Construct a IntHistogram given the Highest value to be tracked and a number of significant decimal digits.
IntHistogram(long, long, int) - Constructor for class org.HdrHistogram.IntHistogram
Construct a IntHistogram given the Lowest and Highest values to be tracked and a number of significant decimal digits.
iterator() - Method in class org.HdrHistogram.HistogramData.AllValues
 
iterator() - Method in class org.HdrHistogram.HistogramData.LinearBucketValues
 
iterator() - Method in class org.HdrHistogram.HistogramData.LogarithmicBucketValues
 
iterator() - Method in class org.HdrHistogram.HistogramData.Percentiles
 
iterator() - Method in class org.HdrHistogram.HistogramData.RecordedValues
 

L

linearBucketValues(int) - Method in class org.HdrHistogram.HistogramData
Provide a means of iterating through histogram values using linear steps.
LinearIterator - Class in org.HdrHistogram
Used for iterating through histogram values in linear steps.
LinearIterator(AbstractHistogram, int) - Constructor for class org.HdrHistogram.LinearIterator
 
logarithmicBucketValues(int, double) - Method in class org.HdrHistogram.HistogramData
Provide a means of iterating through histogram values at logarithmically increasing levels.
LogarithmicIterator - Class in org.HdrHistogram
Used for iterating through histogram values in logarithmically increasing levels.
LogarithmicIterator(AbstractHistogram, int, double) - Constructor for class org.HdrHistogram.LogarithmicIterator
 
lowestEquivalentValue(long) - Method in class org.HdrHistogram.AbstractHistogram
Get the lowest value that is equivalent to the given value within the histogram's resolution.

M

medianEquivalentValue(long) - Method in class org.HdrHistogram.AbstractHistogram
Get a value that lies in the middle (rounded up) of the range of values equivalent the given value.

N

nextAbsoluteIntervalHistogram(Double, Double) - Method in class org.HdrHistogram.HistogramLogReader
Read the next interval histogram from the log, if interval falls within an absolute time range
nextIntervalHistogram(Double, Double) - Method in class org.HdrHistogram.HistogramLogReader
Read the next interval histogram from the log, if interval falls within a time range.
nextIntervalHistogram() - Method in class org.HdrHistogram.HistogramLogReader
Read the next interval histogram from the log.
nextNonEquivalentValue(long) - Method in class org.HdrHistogram.AbstractHistogram
Get the next value that is not equivalent to the given value within the histogram's resolution.

O

org.HdrHistogram - package org.HdrHistogram
A High Dynamic Range (HDR) Histogram Package
outputComment(String) - Method in class org.HdrHistogram.HistogramLogWriter
Log a comment to the log.
outputIntervalHistogram(double, double, Histogram) - Method in class org.HdrHistogram.HistogramLogWriter
Output an interval histogram, with the given timestamp.
outputIntervalHistogram(Histogram) - Method in class org.HdrHistogram.HistogramLogWriter
Output an interval histogram, using the timestamp indicated in the histogram.
outputLegend() - Method in class org.HdrHistogram.HistogramLogWriter
Output a legend line to the log.
outputLogFormatVersion() - Method in class org.HdrHistogram.HistogramLogWriter
Output a log format version to the log.
outputPercentileDistribution(PrintStream, Double) - Method in class org.HdrHistogram.HistogramData
Produce textual representation of the value distribution of histogram data by percentile.
outputPercentileDistribution(PrintStream, int, Double) - Method in class org.HdrHistogram.HistogramData
Produce textual representation of the value distribution of histogram data by percentile.
outputPercentileDistribution(PrintStream, int, Double, boolean) - Method in class org.HdrHistogram.HistogramData
Produce textual representation of the value distribution of histogram data by percentile.
outputStartTime(long) - Method in class org.HdrHistogram.HistogramLogWriter
Log a start time in the log.

P

PercentileIterator - Class in org.HdrHistogram
Used for iterating through histogram values according to percentile levels.
PercentileIterator(AbstractHistogram, int) - Constructor for class org.HdrHistogram.PercentileIterator
 
percentiles(int) - Method in class org.HdrHistogram.HistogramData
Provide a means of iterating through histogram values according to percentile levels.

R

recordedValues() - Method in class org.HdrHistogram.HistogramData
Provide a means of iterating through all recorded histogram values using the finest granularity steps supported by the underlying representation.
RecordedValuesIterator - Class in org.HdrHistogram
Used for iterating through all recorded histogram values using the finest granularity steps supported by the underlying representation.
RecordedValuesIterator(AbstractHistogram) - Constructor for class org.HdrHistogram.RecordedValuesIterator
 
recordValue(long, long) - Method in class org.HdrHistogram.AbstractHistogram
Deprecated. Record a value in the histogram. This deprecated method has identical behavior to recordValueWithExpectedInterval(). It was renamed to avoid ambiguity.
recordValue(long) - Method in class org.HdrHistogram.AbstractHistogram
Record a value in the histogram
recordValueWithCount(long, long) - Method in class org.HdrHistogram.AbstractHistogram
Record a value in the histogram (adding to the value's current count)
recordValueWithExpectedInterval(long, long) - Method in class org.HdrHistogram.AbstractHistogram
Record a value in the histogram.
reestablishTotalCount() - Method in class org.HdrHistogram.AbstractHistogram
Reestablish the internal notion of totalCount by recalculating it from recorded values.
reset() - Method in class org.HdrHistogram.AbstractHistogram
Reset the contents and stats of this histogram
reset() - Method in class org.HdrHistogram.AllValuesIterator
Reset iterator for re-use in a fresh iteration over the same histogram data set.
reset(int) - Method in class org.HdrHistogram.LinearIterator
Reset iterator for re-use in a fresh iteration over the same histogram data set.
reset(int, double) - Method in class org.HdrHistogram.LogarithmicIterator
Reset iterator for re-use in a fresh iteration over the same histogram data set.
reset(int) - Method in class org.HdrHistogram.PercentileIterator
Reset iterator for re-use in a fresh iteration over the same histogram data set.
reset() - Method in class org.HdrHistogram.RecordedValuesIterator
Reset iterator for re-use in a fresh iteration over the same histogram data set.

S

setEndTimeStamp(long) - Method in class org.HdrHistogram.AbstractHistogram
Set the end time stamp value associated with this histogram to a given value.
setStartTimeStamp(long) - Method in class org.HdrHistogram.AbstractHistogram
Set the start time stamp value associated with this histogram to a given value.
ShortHistogram - Class in org.HdrHistogram
A High Dynamic Range (HDR) Histogram using a short count type
ShortHistogram(long, int) - Constructor for class org.HdrHistogram.ShortHistogram
Construct a ShortHistogram given the Highest value to be tracked and a number of significant decimal digits.
ShortHistogram(long, long, int) - Constructor for class org.HdrHistogram.ShortHistogram
Construct a ShortHistogram given the Lowest and Highest values to be tracked and a number of significant decimal digits.
sizeOfEquivalentValueRange(long) - Method in class org.HdrHistogram.AbstractHistogram
Get the size (in value units) of the range of values that are equivalent to the given value within the histogram's resolution.
SynchronizedHistogram - Class in org.HdrHistogram
An internally synchronized High Dynamic Range (HDR) Histogram using a long count type
SynchronizedHistogram(long, int) - Constructor for class org.HdrHistogram.SynchronizedHistogram
Construct a SynchronizedHistogram given the Highest value to be tracked and a number of significant decimal digits.
SynchronizedHistogram(long, long, int) - Constructor for class org.HdrHistogram.SynchronizedHistogram
Construct a SynchronizedHistogram given the Lowest and Highest values to be tracked and a number of significant decimal digits.

T

toString() - Method in class org.HdrHistogram.HistogramIterationValue
 

V

valuesAreEquivalent(long, long) - Method in class org.HdrHistogram.AbstractHistogram
Determine if two values are equivalent with the histogram's resolution.

A C D E G H I L M N O P R S T V

Copyright © 2014. All rights reserved.