Uses of Class
org.apache.commons.collections4.bloomfilter.LayerManager
Packages that use LayerManager
Package
Description
Collects extensible Bloom filter classes and interfaces.
-
Uses of LayerManager in org.apache.commons.collections4.bloomfilter
Methods in org.apache.commons.collections4.bloomfilter that return LayerManagerModifier and TypeMethodDescriptionLayerManager.Builder.build()Builds the layer manager with the specified properties.LayerManager.copy()Creates a deep copy of this LayerManager.Methods in org.apache.commons.collections4.bloomfilter that return types with arguments of type LayerManagerModifier and TypeMethodDescriptionstatic <T extends BloomFilter>
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>
Predicate<LayerManager<T>>LayerManager.ExtendCheck.advanceOnPopulated()Advances the target once a merge has been performed.static <T extends BloomFilter>
Predicate<LayerManager<T>>LayerManager.ExtendCheck.advanceOnSaturation(double maxN) Creates a new target after the current target is saturated.static <T extends BloomFilter>
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) Constructor.