Interface Hasher
-
- All Superinterfaces:
PrimitiveSink
@Beta public interface Hasher extends PrimitiveSink
APrimitiveSinkthat can compute a hash code after reading the input. Each hasher should translate all multibyte values (putInt(int),putLong(long), etc) to bytes in little-endian order.Warning: The result of calling any methods after calling
hash()is undefined.Warning: Using a specific character encoding when hashing a
CharSequencewithputString(CharSequence, Charset)is generally only useful for cross-language compatibility (otherwise preferputUnencodedChars(java.lang.CharSequence)). However, the character encodings must be identical across languages. Also beware thatCharsetdefinitions may occasionally change between Java releases.Warning: Chunks of data that are put into the
Hasherare not delimited. The resultingHashCodeis dependent only on the bytes inserted, and the order in which they were inserted, not how those bytes were chunked into discrete put() operations. For example, the following three expressions all generate colliding hash codes:newHasher().putByte(b1).putByte(b2).putByte(b3).hash() newHasher().putByte(b1).putBytes(new byte[] { b2, b3 }).hash() newHasher().putBytes(new byte[] { b1, b2, b3 }).hash()If you wish to avoid this, you should either prepend or append the size of each chunk. Keep in mind that when dealing with char sequences, the encoded form of two concatenated char sequences is not equivalent to the concatenation of their encoded form. Therefore,
putString(CharSequence, Charset)should only be used consistently with complete sequences and not broken into chunks.- Since:
- 11.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HashCodehash()Computes a hash code based on the data that have been provided to this hasher.HasherputBoolean(boolean b)Equivalent toputByte(b ? (byte) 1 : (byte) 0).HasherputByte(byte b)Puts a byte into this sink.HasherputBytes(byte[] bytes)Puts an array of bytes into this sink.HasherputBytes(byte[] bytes, int off, int len)Puts a chunk of an array of bytes into this sink.HasherputChar(char c)Puts a character into this sink.HasherputDouble(double d)Equivalent toputLong(Double.doubleToRawLongBits(d)).HasherputFloat(float f)Equivalent toputInt(Float.floatToRawIntBits(f)).HasherputInt(int i)Puts an int into this sink.HasherputLong(long l)Puts a long into this sink.<T> HasherputObject(T instance, Funnel<? super T> funnel)A simple convenience forfunnel.funnel(object, this).HasherputShort(short s)Puts a short into this sink.HasherputString(java.lang.CharSequence charSequence, java.nio.charset.Charset charset)Equivalent toputBytes(charSequence.toString().getBytes(charset)).HasherputUnencodedChars(java.lang.CharSequence charSequence)Equivalent to processing eachcharvalue in theCharSequence, in order.
-
-
-
Method Detail
-
putByte
Hasher putByte(byte b)
Description copied from interface:PrimitiveSinkPuts a byte into this sink.- Specified by:
putBytein interfacePrimitiveSink- Parameters:
b- a byte- Returns:
- this instance
-
putBytes
Hasher putBytes(byte[] bytes)
Description copied from interface:PrimitiveSinkPuts an array of bytes into this sink.- Specified by:
putBytesin interfacePrimitiveSink- Parameters:
bytes- a byte array- Returns:
- this instance
-
putBytes
Hasher putBytes(byte[] bytes, int off, int len)
Description copied from interface:PrimitiveSinkPuts a chunk of an array of bytes into this sink.bytes[off]is the first byte written,bytes[off + len - 1]is the last.- Specified by:
putBytesin interfacePrimitiveSink- Parameters:
bytes- a byte arrayoff- the start offset in the arraylen- the number of bytes to write- Returns:
- this instance
-
putShort
Hasher putShort(short s)
Description copied from interface:PrimitiveSinkPuts a short into this sink.- Specified by:
putShortin interfacePrimitiveSink
-
putInt
Hasher putInt(int i)
Description copied from interface:PrimitiveSinkPuts an int into this sink.- Specified by:
putIntin interfacePrimitiveSink
-
putLong
Hasher putLong(long l)
Description copied from interface:PrimitiveSinkPuts a long into this sink.- Specified by:
putLongin interfacePrimitiveSink
-
putFloat
Hasher putFloat(float f)
Equivalent toputInt(Float.floatToRawIntBits(f)).- Specified by:
putFloatin interfacePrimitiveSink
-
putDouble
Hasher putDouble(double d)
Equivalent toputLong(Double.doubleToRawLongBits(d)).- Specified by:
putDoublein interfacePrimitiveSink
-
putBoolean
Hasher putBoolean(boolean b)
Equivalent toputByte(b ? (byte) 1 : (byte) 0).- Specified by:
putBooleanin interfacePrimitiveSink
-
putChar
Hasher putChar(char c)
Description copied from interface:PrimitiveSinkPuts a character into this sink.- Specified by:
putCharin interfacePrimitiveSink
-
putUnencodedChars
Hasher putUnencodedChars(java.lang.CharSequence charSequence)
Equivalent to processing eachcharvalue in theCharSequence, in order. The input must not be updated while this method is in progress.- Specified by:
putUnencodedCharsin interfacePrimitiveSink- Since:
- 15.0 (since 11.0 as putString(CharSequence)).
-
putString
Hasher putString(java.lang.CharSequence charSequence, java.nio.charset.Charset charset)
Equivalent toputBytes(charSequence.toString().getBytes(charset)).- Specified by:
putStringin interfacePrimitiveSink
-
putObject
<T> Hasher putObject(T instance, Funnel<? super T> funnel)
A simple convenience forfunnel.funnel(object, this).
-
hash
HashCode hash()
Computes a hash code based on the data that have been provided to this hasher. The result is unspecified if this method is called more than once on the same instance.
-
-