@PublicationReference(author="Robert J. Jenkins, Jr.", title="Hash Functions for Hash Table Lookup", type=WebPage, year=1997, url="http://burtleburtle.net/bob/hash/evahash.html", notes="Ported from Robert Jenkins\'s C implementation") public class Eva32Hash extends AbstractHashFunction
Modifier and Type | Field and Description |
---|---|
protected static byte[] |
DEFAULT_SEED
Default seed: ( 0, 0, 0, 0 ).
|
static int |
LENGTH
A 32-bit, 4-byte hash, 4.
|
Constructor and Description |
---|
Eva32Hash()
Creates a new instance of Eva32Hash
|
Modifier and Type | Method and Description |
---|---|
Eva32Hash |
clone()
This makes public the clone method on the
Object class and
removes the exception that it throws. |
void |
evaluateInto(byte[] input,
byte[] output,
byte[] seed)
Evaluates the input into the given output
|
byte[] |
getDefaultSeed()
Gets the default seed for the hash function
|
static int |
hash(byte[] input,
int seed)
32-bit (4-byte) hash code for the given input and seed
|
int |
length()
Returns the number of bytes in the output hash code.
|
evaluate, evaluate, evaluateInto
public static final int LENGTH
protected static final byte[] DEFAULT_SEED
public Eva32Hash clone()
AbstractCloneableSerializable
Object
class and
removes the exception that it throws. Its default behavior is to
automatically create a clone of the exact type of object that the
clone is called on and to copy all primitives but to keep all references,
which means it is a shallow copy.
Extensions of this class may want to override this method (but call
super.clone()
to implement a "smart copy". That is, to target
the most common use case for creating a copy of the object. Because of
the default behavior being a shallow copy, extending classes only need
to handle fields that need to have a deeper copy (or those that need to
be reset). Some of the methods in ObjectUtil
may be helpful in
implementing a custom clone method.
Note: The contract of this method is that you must use
super.clone()
as the basis for your implementation.clone
in interface CloneableSerializable
clone
in class AbstractHashFunction
public void evaluateInto(byte[] input, byte[] output, byte[] seed)
HashFunction
input
- Input to compute the hash-function value ofoutput
- Output to put the hash-function intoseed
- Seed to offset the hash code.public int length()
HashFunction
public static int hash(byte[] input, int seed)
input
- Input to hashseed
- Seed, or offset, of the hash codepublic byte[] getDefaultSeed()
HashFunction