Uses of Class
org.apache.commons.collections4.bloomfilter.LayerManager
-
Packages that use LayerManager Package Description org.apache.commons.collections4.bloomfilter Implements Bloom filter classes and interfaces. -
-
Uses of LayerManager in org.apache.commons.collections4.bloomfilter
Methods in org.apache.commons.collections4.bloomfilter that return LayerManager Modifier and Type Method Description LayerManager<T>LayerManager. copy()Creates a deep copy of thisLayerManager.LayerManager<T>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 LayerManager Modifier and Type Method Description static <T extends BloomFilter<T>>
java.util.function.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>>
java.util.function.Predicate<LayerManager<T>>LayerManager.ExtendCheck. advanceOnPopulated()Advances the target once a merge has been performed.static <T extends BloomFilter<T>>
java.util.function.Predicate<LayerManager<T>>LayerManager.ExtendCheck. advanceOnSaturation(double maxN)Creates a new target after the current target is saturated.static <T extends BloomFilter<T>>
java.util.function.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 LayerManager Modifier and Type Method Description LayerManager.Builder<T>LayerManager.Builder. setExtendCheck(java.util.function.Predicate<LayerManager<T>> extendCheck)Sets the extendCheck predicate.Constructors in org.apache.commons.collections4.bloomfilter with parameters of type LayerManager Constructor Description LayeredBloomFilter(Shape shape, LayerManager<T> layerManager)Constructs a new instance.
-