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 Predicate<LayerManager>
LayerManager.ExtendCheck.advanceOnCount
(int breakAt) Creates a new target after a specific number of filters have been added to the current target.static Predicate<LayerManager>
LayerManager.ExtendCheck.advanceOnPopulated()
Advances the target once a merge has been performed.static Predicate<LayerManager>
LayerManager.ExtendCheck.advanceOnSaturation
(double maxN) Creates a new target after the current target is saturated.static Predicate<LayerManager>
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> extendCheck) Sets the extendCheck predicate.Constructors in org.apache.commons.collections4.bloomfilter with parameters of type LayerManagerModifierConstructorDescriptionLayeredBloomFilter
(Shape shape, LayerManager layerManager) Constructor.