Uses of Class
org.apache.commons.collections4.bloomfilter.LayerManager
Packages that use LayerManager
Package
Description
Implements Bloom filter classes and interfaces.
-
Uses of LayerManager in org.apache.commons.collections4.bloomfilter
Classes in org.apache.commons.collections4.bloomfilter that implement interfaces with type arguments of type LayerManagerModifier and TypeClassDescriptionstatic class
LayerManager.Builder<T extends BloomFilter<T>>
Builds new instances ofLayerManager
.Methods in org.apache.commons.collections4.bloomfilter that return LayerManagerModifier and TypeMethodDescriptionLayerManager.copy()
Creates a deep copy of thisLayerManager
.LayerManager.Builder.get()
Builds the layer manager with the specified properties.Methods in org.apache.commons.collections4.bloomfilter that return types with arguments of type LayerManagerModifier and TypeMethodDescriptionstatic <T extends BloomFilter<T>>
Predicate<LayerManager<T>> LayerManager.ExtendCheck.advanceOnCount
(int breakAt) Creates a new target after a specific number of filters have been added to the current target.static <T extends BloomFilter<T>>
Predicate<LayerManager<T>> LayerManager.ExtendCheck.advanceOnPopulated()
Advances the target once a merge has been performed.static <T extends BloomFilter<T>>
Predicate<LayerManager<T>> LayerManager.ExtendCheck.advanceOnSaturation
(double maxN) Creates a new target after the current target is saturated.static <T extends BloomFilter<T>>
Predicate<LayerManager<T>> LayerManager.ExtendCheck.neverAdvance()
Does not automatically advance the target.Method parameters in org.apache.commons.collections4.bloomfilter with type arguments of type LayerManagerModifier and TypeMethodDescriptionLayerManager.Builder.setExtendCheck
(Predicate<LayerManager<T>> extendCheck) Sets the extendCheck predicate.Constructors in org.apache.commons.collections4.bloomfilter with parameters of type LayerManagerModifierConstructorDescriptionLayeredBloomFilter
(Shape shape, LayerManager<T> layerManager) Constructs a new instance.