Uses of Class
org.apache.datasketches.frequencies.FrequentLongsSketch.Row
Packages that use FrequentLongsSketch.Row
Package
Description
This package contains the implementations of the paper https://arxiv.org/abs/1705.07001.
-
Uses of FrequentLongsSketch.Row in org.apache.datasketches.frequencies
Classes in org.apache.datasketches.frequencies that implement interfaces with type arguments of type FrequentLongsSketch.RowModifier and TypeClassDescriptionstatic classRow class that defines the return values from a getFrequentItems query.Methods in org.apache.datasketches.frequencies that return FrequentLongsSketch.RowModifier and TypeMethodDescriptionFrequentLongsSketch.getFrequentItems(long threshold, ErrorType errorType) Returns an array of Rows that include frequent items, estimates, upper and lower bounds given a threshold and an ErrorCondition.FrequentLongsSketch.getFrequentItems(ErrorType errorType) Returns an array of Rows that include frequent items, estimates, upper and lower bounds given an ErrorCondition and the default threshold.Methods in org.apache.datasketches.frequencies with parameters of type FrequentLongsSketch.RowModifier and TypeMethodDescriptionintFrequentLongsSketch.Row.compareTo(FrequentLongsSketch.Row that) This compareTo is strictly limited to the Row.getEstimate() value and does not imply any ordering whatsoever to the other elements of the row: item and upper and lower bounds.