Uses of Class
org.apache.datasketches.quantiles.ItemsUnion
| Package | Description |
|---|---|
| org.apache.datasketches.quantiles |
The quantiles package contains stochastic streaming algorithms that enable single-pass
analysis of the distribution of a stream of real (double) values or generic items.
|
-
Uses of ItemsUnion in org.apache.datasketches.quantiles
Methods in org.apache.datasketches.quantiles that return ItemsUnion Modifier and Type Method Description static <T> ItemsUnion<T>ItemsUnion. getInstance(int maxK, Comparator<? super T> comparator)Create an instance of ItemsUnionstatic <T> ItemsUnion<T>ItemsUnion. getInstance(Comparator<? super T> comparator)Create an instance of ItemsUnion with the default kstatic <T> ItemsUnion<T>ItemsUnion. getInstance(org.apache.datasketches.memory.Memory srcMem, Comparator<? super T> comparator, ArrayOfItemsSerDe<T> serDe)Heapify the given srcMem into a Union object.static <T> ItemsUnion<T>ItemsUnion. getInstance(ItemsSketch<T> sketch)Create an instance of ItemsUnion based on ItemsSketch