Package | Description |
---|---|
orestes.bloomfilter |
Modifier and Type | Method and Description |
---|---|
BloomFilter.HashMethod |
BloomFilter.getHashMethod()
Returns the hash method used to calculate hash values.
|
static BloomFilter.HashMethod |
BloomFilter.HashMethod.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BloomFilter.HashMethod[] |
BloomFilter.HashMethod.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
BloomFilter.setHashMethod(BloomFilter.HashMethod hashMethod)
Sets the method used to generate hash values.
|
Constructor and Description |
---|
BloomFilter(java.util.BitSet bloomFilter,
int m,
int k,
BloomFilter.HashMethod hashMethod,
java.lang.String hashFunctionName)
Constructs a new bloom filter by using the provided bit vector
bloomFilter.
|