Class Histogram<T>
- java.lang.Object
-
- com.evolveum.midpoint.util.histogram.Histogram<T>
-
public class Histogram<T> extends Object
-
-
Constructor Summary
Constructors Constructor Description Histogram(int step, int maxLength)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
dump(int columns)
ArrayList<HistogramEntry<T>>
getEntries()
int
getItems()
int
getMaxLength()
long
getMaxValue()
long
getMinValue()
int
getStep()
long
getTotalValue()
void
register(T item, long value)
-
-
-
Method Detail
-
register
public void register(T item, long value)
-
getStep
public int getStep()
-
getMaxLength
public int getMaxLength()
-
getEntries
public ArrayList<HistogramEntry<T>> getEntries()
-
getMinValue
public long getMinValue()
-
getMaxValue
public long getMaxValue()
-
getTotalValue
public long getTotalValue()
-
getItems
public int getItems()
-
dump
public String dump(int columns)
-
-