Uses of Interface
org.apache.commons.collections4.bloomfilter.CellExtractor
Packages that use CellExtractor
Package
Description
Implements Bloom filter classes and interfaces.
-
Uses of CellExtractor in org.apache.commons.collections4.bloomfilter
Subinterfaces of CellExtractor in org.apache.commons.collections4.bloomfilterModifier and TypeInterfaceDescriptioninterface
The interface that describes a Bloom filter that associates a count with each bit index rather than a bit.Classes in org.apache.commons.collections4.bloomfilter that implement CellExtractorModifier and TypeClassDescriptionfinal class
A counting Bloom filter using an int array to track cells for each enabled bit.Methods in org.apache.commons.collections4.bloomfilter that return CellExtractorModifier and TypeMethodDescriptionstatic CellExtractor
CellExtractor.from
(IndexExtractor indexExtractor) Creates a CellExtractor from an IndexExtractor.Methods in org.apache.commons.collections4.bloomfilter with parameters of type CellExtractorModifier and TypeMethodDescriptionboolean
ArrayCountingBloomFilter.add
(CellExtractor other) boolean
CountingBloomFilter.add
(CellExtractor other) Adds the specified CellExtractor to this Bloom filter.int
ArrayCountingBloomFilter.getMaxInsert
(CellExtractor cellExtractor) int
CountingBloomFilter.getMaxInsert
(CellExtractor cellExtractor) Determines the maximum number of times the Cell Extractor could have been added.boolean
ArrayCountingBloomFilter.subtract
(CellExtractor other) boolean
CountingBloomFilter.subtract
(CellExtractor other) Adds the specified CellExtractor to this Bloom filter.