Uses of Class
org.apache.datasketches.quantiles.ItemsUnion
-
Packages that use 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 quantiles. -
-
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(Class<T> clazz, int maxK, Comparator<? super T> comparator)
Create an instance of ItemsUnionstatic <T> ItemsUnion<T>
ItemsUnion. getInstance(Class<T> clazz, Comparator<? super T> comparator)
Create an instance of ItemsUnion with the default kstatic <T> ItemsUnion<T>
ItemsUnion. getInstance(Class<T> clazz, 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
-