Uses of Package
org.apache.commons.collections4.bloomfilter
Packages that use org.apache.commons.collections4.bloomfilter
Package
Description
Implements Bloom filter classes and interfaces.
-
Classes in org.apache.commons.collections4.bloomfilter used by org.apache.commons.collections4.bloomfilterClassDescriptionA counting Bloom filter using an int array to track cells for each enabled bit.Produces bit map longs for a Bloom filter.The interface that describes a Bloom filter.Produces Bloom filters from a collection (for example,
LayeredBloomFilter
).Some Bloom filter implementations use a count rather than a bit flag.Represents an operation that accepts an<index, count>
pair.The interface that describes a Bloom filter that associates a count with each bit index rather than a bit.A Hasher createsIndexExtractor
s based on the hash implementation and the providedShape
.An object that produces indices of a Bloom filter.Layered Bloom filters are described in Zhiwang, Cen; Jungang, Xu; Jian, Sun (2010), "A multi-layer Bloom filter for duplicated URL detection", Proc. 3rd International Conference on Advanced Computer Theory and Engineering (ICACTE 2010), vol. 1, pp.Implementation of the methods to manage the layers in a layered Bloom filter.Builds new instances ofLayerManager
.Represents a function that accepts a two long-valued argument and produces a binary result.The definition of a Bloom filter shape.A bloom filter using an array of bit maps to track enabled bits.A bloom filter using a TreeSet of integers to track enabled bits.An abstract class to assist in implementing Bloom filter decorators.