Type Parameters:
T - Type of elements in the bin
V - Type of computed value
All Known Implementing Classes:
AverageValueComputation, MaxValueComputation, PercentageValueComputation

public interface ValueComputation<T,V>
Computes value for single bin of the histogram.
  • Method Summary

    Modifier and Type
    Method
    Description
    computeValue(Collection<T> elementsInBin, int totalElements)
     
  • Method Details

    • computeValue

      V computeValue(Collection<T> elementsInBin, int totalElements)