Uses of Interface
org.apache.commons.collections4.bloomfilter.CellExtractor
-
Packages that use CellExtractor Package Description org.apache.commons.collections4.bloomfilter Implements Bloom filter classes and interfaces. -
-
Uses of CellExtractor in org.apache.commons.collections4.bloomfilter
Subinterfaces of CellExtractor in org.apache.commons.collections4.bloomfilter Modifier and Type Interface Description interfaceCountingBloomFilterThe 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 CellExtractor Modifier and Type Class Description classArrayCountingBloomFilterA counting Bloom filter using an int array to track cells for each enabled bit.Methods in org.apache.commons.collections4.bloomfilter that return CellExtractor Modifier and Type Method Description static CellExtractorCellExtractor. from(IndexExtractor indexExtractor)Creates a CellExtractor from an IndexExtractor.Methods in org.apache.commons.collections4.bloomfilter with parameters of type CellExtractor Modifier and Type Method Description booleanArrayCountingBloomFilter. add(CellExtractor other)booleanCountingBloomFilter. add(CellExtractor other)Adds the specified CellExtractor to this Bloom filter.intArrayCountingBloomFilter. getMaxInsert(CellExtractor cellExtractor)intCountingBloomFilter. getMaxInsert(CellExtractor cellExtractor)Determines the maximum number of times the Cell Extractor could have been added.booleanArrayCountingBloomFilter. subtract(CellExtractor other)booleanCountingBloomFilter. subtract(CellExtractor other)Adds the specified CellExtractor to this Bloom filter.
-