Package | Description |
---|---|
com.google.common.hash |
Hash functions and related structures.
|
Modifier and Type | Method and Description |
---|---|
static <T> BloomFilter<T> |
BloomFilter.create(Funnel<T> funnel,
int expectedInsertions)
Creates a
Builder of a BloomFilter , with the expected number
of insertions, and a default expected false positive probability of 3%. |
static <T> BloomFilter<T> |
BloomFilter.create(Funnel<T> funnel,
int expectedInsertions,
double falsePositiveProbability)
Creates a
Builder of a BloomFilter , with the expected number
of insertions and expected false positive probability. |
Copyright © 2010-2012. All Rights Reserved.