Uses of Class
org.apache.hadoop.util.bloom.Key

Packages that use Key
Package
Description
 
  • Uses of Key in org.apache.hadoop.util.bloom

    Methods in org.apache.hadoop.util.bloom with parameters of type Key
    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. how many times the key was added to the filter.
    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.
    Method parameters in org.apache.hadoop.util.bloom with type arguments of type Key
    Modifier and Type
    Method
    Description
    void
    Filter.add(Collection<Key> keys)
    Adds a collection of keys to this filter.
    void
    Filter.add(List<Key> keys)
    Adds a list of keys to this filter.
    void
    RetouchedBloomFilter.addFalsePositive(Collection<Key> coll)
    Adds a collection of false positive information to this retouched Bloom filter.
    void
    RetouchedBloomFilter.addFalsePositive(List<Key> keys)
    Adds a list of false positive information to this retouched Bloom filter.