public class MurmurHash3
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
MurmurHash3.HashValue
128 bits of state.
|
Constructor and Description |
---|
MurmurHash3() |
Modifier and Type | Method and Description |
---|---|
static long |
fmix64(long k) |
static long |
getLongLittleEndian(byte[] buf,
int offset)
Gets a long from a byte buffer in little endian byte order.
|
static MurmurHash3.HashValue |
murmurhash3_x64_128(byte[] key,
int offset,
int len,
int seed)
Returns the MurmurHash3_x64_128 hash.
|
static MurmurHash3.HashValue |
murmurhash3_x64_128(java.lang.String str,
int seed) |
public static long fmix64(long k)
public static long getLongLittleEndian(byte[] buf, int offset)
public static MurmurHash3.HashValue murmurhash3_x64_128(java.lang.String str, int seed)
public static MurmurHash3.HashValue murmurhash3_x64_128(byte[] key, int offset, int len, int seed)
Copyright © 2003-present Jodd Team