Java com.google.common.hash Hasher fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.hash Hasher fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.hash Hasher.

The text is from its open source code.

Implementation

com.google.common.hash.Hasher has the following implementations.
Click this link to see all its implementation.

Method

HashCodehash()
Computes a hash code based on the data that have been provided to this hasher.
inthashCode()
HasherputBoolean(boolean b)
Equivalent to putByte(b ?
HasherputByte(byte b)
HasherputBytes(byte[] bytes)
HasherputBytes(byte[] bytes, int off, int len)
HasherputChar(char c)
HasherputDouble(double d)
Equivalent to putLong(Double.doubleToRawLongBits(d)) .
HasherputFloat(float f)
Equivalent to putInt(Float.floatToRawIntBits(f)) .
HasherputInt(int i)
HasherputLong(long l)
HasherputObject(T instance, Funnel funnel)
A simple convenience for funnel.funnel(object, this) .
HasherputShort(short s)
HasherputString(CharSequence charSequence, Charset charset)
Equivalent to putBytes(charSequence.toString().getBytes(charset)) .
HasherputUnencodedChars(CharSequence charSequence)
Equivalent to processing each char value in the CharSequence , in order.