BloomFilter<T> |
BloomFilter.copy() |
Creates a new BloomFilter that's a copy of this instance.
|
static <T> BloomFilter<T> |
BloomFilter.create(Funnel<? super T> funnel,
int expectedInsertions) |
Creates a BloomFilter with the expected number of
insertions and a default expected false positive probability of 3%.
|
static <T> BloomFilter<T> |
BloomFilter.create(Funnel<? super T> funnel,
int expectedInsertions,
double fpp) |
Creates a BloomFilter with the expected number of
insertions and expected false positive probability.
|
static <T> BloomFilter<T> |
BloomFilter.create(Funnel<? super T> funnel,
long expectedInsertions) |
Creates a BloomFilter with the expected number of
insertions and a default expected false positive probability of 3%.
|
static <T> BloomFilter<T> |
BloomFilter.create(Funnel<? super T> funnel,
long expectedInsertions,
double fpp) |
Creates a BloomFilter with the expected number of
insertions and expected false positive probability.
|
static <T> BloomFilter<T> |
BloomFilter.readFrom(java.io.InputStream in,
Funnel<T> funnel) |
|