Uses of Interface
org.apache.commons.collections4.bloomfilter.CellProducer
Packages that use CellProducer
Package
Description
Collects extensible Bloom filter classes and interfaces.
-
Uses of CellProducer in org.apache.commons.collections4.bloomfilter
Subinterfaces of CellProducer in org.apache.commons.collections4.bloomfilterModifier and TypeInterfaceDescriptioninterfaceThe 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 CellProducerModifier and TypeClassDescriptionfinal classA counting Bloom filter using an int array to track cells for each enabled bit.Methods in org.apache.commons.collections4.bloomfilter that return CellProducerModifier and TypeMethodDescriptionstatic CellProducerCellProducer.from(IndexProducer producer) Creates a CellProducer from an IndexProducer.Methods in org.apache.commons.collections4.bloomfilter with parameters of type CellProducerModifier and TypeMethodDescriptionbooleanArrayCountingBloomFilter.add(CellProducer other) booleanCountingBloomFilter.add(CellProducer other) Adds the specified CellProducer to this Bloom filter.intArrayCountingBloomFilter.getMaxInsert(CellProducer cellProducer) intCountingBloomFilter.getMaxInsert(CellProducer cellProducer) Determines the maximum number of times the Cell Producer could have been add.booleanArrayCountingBloomFilter.subtract(CellProducer other) booleanCountingBloomFilter.subtract(CellProducer other) Adds the specified CellProducer to this Bloom filter.