| Package | Description |
|---|---|
| org.apache.hadoop.util.bloom |
| Modifier and Type | Method | Description |
|---|---|---|
void |
BloomFilter.add(Key key) |
|
void |
CountingBloomFilter.add(Key key) |
|
void |
DynamicBloomFilter.add(Key key) |
|
abstract void |
Filter.add(Key key) |
Adds a key to this filter.
|
void |
Filter.add(Key[] keys) |
Adds an array of keys to this filter.
|
void |
RetouchedBloomFilter.add(Key key) |
|
void |
RetouchedBloomFilter.addFalsePositive(Key key) |
Adds a false positive information to this retouched Bloom filter.
|
void |
RetouchedBloomFilter.addFalsePositive(Key[] keys) |
Adds an array of false positive information to this retouched Bloom filter.
|
int |
CountingBloomFilter.approximateCount(Key key) |
This method calculates an approximate count of the key, i.e.
|
int |
Key.compareTo(Key other) |
|
void |
CountingBloomFilter.delete(Key key) |
Removes a specified key from this counting Bloom filter.
|
int[] |
HashFunction.hash(Key k) |
Hashes a specified key into several integers.
|
boolean |
BloomFilter.membershipTest(Key key) |
|
boolean |
CountingBloomFilter.membershipTest(Key key) |
|
boolean |
DynamicBloomFilter.membershipTest(Key key) |
|
abstract boolean |
Filter.membershipTest(Key key) |
Determines wether a specified key belongs to this filter.
|
void |
RetouchedBloomFilter.selectiveClearing(Key k,
short scheme) |
Performs the selective clearing for a given key.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
Filter.add(java.util.Collection<Key> keys) |
Adds a collection of keys to this filter.
|
void |
Filter.add(java.util.List<Key> keys) |
Adds a list of keys to this filter.
|
void |
RetouchedBloomFilter.addFalsePositive(java.util.Collection<Key> coll) |
Adds a collection of false positive information to this retouched Bloom filter.
|
void |
RetouchedBloomFilter.addFalsePositive(java.util.List<Key> keys) |
Adds a list of false positive information to this retouched Bloom filter.
|
Copyright © 2008–2025 Apache Software Foundation. All rights reserved.