@ThreadSafe @Immutable public class MurmurHash3 extends Object implements Hash
Modifier and Type | Class and Description |
---|---|
static class |
MurmurHash3.Externalizer |
Modifier and Type | Field and Description |
---|---|
static byte |
INVALID_CHAR |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object other) |
static MurmurHash3 |
getInstance() |
int |
hash(byte[] payload)
Hashes a byte array efficiently.
|
int |
hash(int hashcode)
An incremental version of the hash function, that spreads a pre-calculated
hash code, such as one derived from
Object.hashCode() . |
static int |
hash(long[] payload)
Hashes a byte array efficiently.
|
int |
hash(Object o)
A helper that calculates the hashcode of an object, choosing the optimal
mechanism of hash calculation after considering the type of the object
(byte array, String or Object).
|
int |
hashCode() |
static long[] |
MurmurHash3_x64_128(byte[] key,
int seed)
Hash a value using the x64 128 bit variant of MurmurHash3
|
static long[] |
MurmurHash3_x64_128(long[] key,
int seed)
Hash a value using the x64 128 bit variant of MurmurHash3
|
static int |
MurmurHash3_x64_32(byte[] key,
int seed)
Hash a value using the x64 32 bit variant of MurmurHash3
|
static int |
MurmurHash3_x64_32(long[] key,
int seed)
Hash a value using the x64 32 bit variant of MurmurHash3
|
static long |
MurmurHash3_x64_64(byte[] key,
int seed)
Hash a value using the x64 64 bit variant of MurmurHash3
|
static long |
MurmurHash3_x64_64(long[] key,
int seed)
Hash a value using the x64 64 bit variant of MurmurHash3
|
String |
toString() |
public static final byte INVALID_CHAR
public static MurmurHash3 getInstance()
public static long[] MurmurHash3_x64_128(byte[] key, int seed)
key
- value to hashseed
- random valuepublic static long MurmurHash3_x64_64(byte[] key, int seed)
key
- value to hashseed
- random valuepublic static int MurmurHash3_x64_32(byte[] key, int seed)
key
- value to hashseed
- random valuepublic static long[] MurmurHash3_x64_128(long[] key, int seed)
key
- value to hashseed
- random valuepublic static long MurmurHash3_x64_64(long[] key, int seed)
key
- value to hashseed
- random valuepublic static int MurmurHash3_x64_32(long[] key, int seed)
key
- value to hashseed
- random valuepublic int hash(byte[] payload)
Hash
public static int hash(long[] payload)
payload
- a byte array to hashpublic int hash(int hashcode)
Hash
Object.hashCode()
.public int hash(Object o)
Hash
Copyright © 2021 JBoss by Red Hat. All rights reserved.