public class MurmurHash
extends java.lang.Object
Constructor and Description |
---|
MurmurHash() |
Modifier and Type | Method and Description |
---|---|
static <T> int |
arrayHash(java.lang.Object a)
Compute a high-quality hash of an array
|
static int |
extendHash(int hash,
int value,
int magicA,
int magicB)
Incorporates a new value into an existing hash.
|
static int |
finalizeHash(int hash)
Once all hashes have been incorporated, this performs a final mixing
|
static int |
hiddenMagicA() |
static int |
hiddenMagicB() |
static int |
nextMagicA(int magicA)
Given a magic integer from the first stream, compute the next
|
static int |
nextMagicB(int magicB)
Given a magic integer from the second stream, compute the next
|
static int |
seedArray() |
static int |
startHash(int seed)
Begin a new hash with a seed value.
|
static int |
startMagicA()
The initial magic integers in the first stream.
|
static int |
startMagicB()
The initial magic integer in the second stream.
|
static int |
stringHash(java.lang.String s)
Compute a high-quality hash of a string
|
static <T> int |
symmetricHash(scala.collection.TraversableOnce<T> xs,
int seed)
Compute a hash that is symmetric in its arguments--that is,
where the order of appearance of elements does not matter.
|
public static final int hiddenMagicA()
public static final int hiddenMagicB()
public static final int seedArray()
public static int startHash(int seed)
public static int startMagicA()
public static int startMagicB()
public static int extendHash(int hash, int value, int magicA, int magicB)
hash
- the prior hash valuevalue
- the new value to incorporatemagicA
- a magic integer from the streammagicB
- a magic integer from a different streamhash
- (undocumented)value
- (undocumented)public static int nextMagicA(int magicA)
public static int nextMagicB(int magicB)
public static int finalizeHash(int hash)
public static <T> int arrayHash(java.lang.Object a)
public static int stringHash(java.lang.String s)
public static <T> int symmetricHash(scala.collection.TraversableOnce<T> xs, int seed)
xs
- (undocumented)seed
- (undocumented)