Uses of Class
org.onelab.filter.Key

Packages that use Key
org.onelab.filter   
 

Uses of Key in org.onelab.filter
 

Methods in org.onelab.filter with parameters of type Key
 void BloomFilter.add(Key key)
           
abstract  void Filter.add(Key key)
          Adds a key to this filter.
 void CountingBloomFilter.add(Key key)
           
 void DynamicBloomFilter.add(Key key)
           
 void RetouchedBloomFilter.add(Key key)
           
 void Filter.add(Key[] keys)
          Adds an array of keys to this filter.
 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.
 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)
           
abstract  boolean Filter.membershipTest(Key key)
          Determines wether a specified key belongs to this filter.
 boolean CountingBloomFilter.membershipTest(Key key)
           
 boolean DynamicBloomFilter.membershipTest(Key key)
           
 void RetouchedBloomFilter.selectiveClearing(Key k, short scheme)
          Performs the selective clearing for a given key.
 

Method parameters in org.onelab.filter with type arguments of type Key
 void Filter.add(ArrayList<Key> keys)
          Adds a list of keys to this filter.
 void Filter.add(Collection<Key> keys)
          Adds a collection of keys to this filter.
 void RetouchedBloomFilter.addFalsePositive(ArrayList<Key> keys)
          Adds a list of false positive information to this retouched Bloom filter.
 void RetouchedBloomFilter.addFalsePositive(Collection<Key> coll)
          Adds a collection of false positive information to this retouched Bloom filter.
 



Copyright © 2006 The Apache Software Foundation