BloomFilter<T> |
BloomFilter.copy() |
Creates a new BloomFilter that's a copy of this instance.
|
static <T extends @Nullable Object> 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 extends @Nullable Object> 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 extends @Nullable Object> 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 extends @Nullable Object> 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 extends @Nullable Object> BloomFilter<T> |
BloomFilter.readFrom(InputStream in,
Funnel<? super T> funnel) |
|