Modifier and Type | Method and Description |
---|---|
static LongHashFunction |
LongHashFunction.city_1_1()
Returns a hash function implementing
CityHash64 algorithm, version 1.1 without seed values.
|
static LongHashFunction |
LongHashFunction.city_1_1(long seed)
Returns a hash function implementing
CityHash64 algorithm, version 1.1 using the given seed value.
|
static LongHashFunction |
LongHashFunction.city_1_1(long seed0,
long seed1)
Returns a hash function implementing
CityHash64 algorithm, version 1.1 using the two given seed values.
|
static LongHashFunction |
LongHashFunction.farmNa()
Returns a hash function implementing so-called
farmhashna algorithm, without seed values.
|
static LongHashFunction |
LongHashFunction.farmNa(long seed)
Returns a hash function implementing so-called
farmhashna algorithm, using the given seed value.
|
static LongHashFunction |
LongHashFunction.farmNa(long seed0,
long seed1)
Returns a hash function implementing so-called
farmhashna algorithm, using the two given seed values.
|
static LongHashFunction |
LongHashFunction.farmUo()
Returns a hash function implementing so-called
farmhashuo algorithm without seed values.
|
static LongHashFunction |
LongHashFunction.farmUo(long seed)
Returns a hash function implementing so-called
farmhashuo algorithm with the given seed value.
|
static LongHashFunction |
LongHashFunction.farmUo(long seed0,
long seed1)
Returns a hash function implementing so-called
farmhashuo algorithm with the two given seed values.
|
static LongHashFunction |
LongHashFunction.murmur_3()
Returns a hash function implementing
MurmurHash3
algorithm without seed values.
|
static LongHashFunction |
LongHashFunction.murmur_3(long seed)
Returns a hash function implementing
MurmurHash3
algorithm with the given seed value.
|
static LongHashFunction |
LongHashFunction.xx_r39()
Returns a hash function implementing
xxHash
algorithm, release 39 without seed value (0 is used as default seed value).
|
static LongHashFunction |
LongHashFunction.xx_r39(long seed)
Returns a hash function implementing
xxHash
algorithm, release 39 with the given seed value.
|
Copyright © 2014–2017. All rights reserved.