Package | Description |
---|---|
org.eclipse.mat.query.quantize |
Value or linear frequency distribution histograms.
|
org.eclipse.mat.snapshot.query |
Utilities to develop heap dump queries.
|
Modifier and Type | Class and Description |
---|---|
class |
LatestValueFunction
Simple quantize function which just returns the last value add to the
distribution bucket.
|
Modifier and Type | Field and Description |
---|---|
static Quantize.Function.Factory |
Quantize.AVERAGE
Function to find the average value.
|
static Quantize.Function.Factory |
Quantize.AVERAGE_LONG
Function to find the average long value.
|
static Quantize.Function.Factory |
Quantize.COUNT
Function to count values.
|
static Quantize.Function.Factory |
Quantize.MAX
Function to find the maximum double value.
|
static Quantize.Function.Factory |
Quantize.MAX_LONG
Function to find the maximum long value.
|
static Quantize.Function.Factory |
Quantize.MIN
Function to find the minimum double value.
|
static Quantize.Function.Factory |
Quantize.MIN_LONG
Function to find the minimum long value.
|
static Quantize.Function.Factory |
Quantize.SUM
Function to add values as doubles.
|
static Quantize.Function.Factory |
Quantize.SUM_LONG
Function to add values as longs.
|
Modifier and Type | Method and Description |
---|---|
Quantize.Builder |
Quantize.Builder.column(String label,
Quantize.Function.Factory function)
Add a column identified by label and function.
|
Quantize.Builder |
Quantize.Builder.column(String label,
Quantize.Function.Factory function,
Column.SortDirection sortDirection)
Add a column identified by label and function and sort the result in
the given sort direction.
|
Modifier and Type | Method and Description |
---|---|
TQuantize.Builder |
TQuantize.Builder.column(String label,
Column baseColumn,
int baseColumnIndex,
Quantize.Function.Factory qff)
Add a column with label and function.
|