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

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

PrimitiveSinkputBoolean(boolean b)
Puts a boolean into this sink.
PrimitiveSinkputByte(byte b)
Puts a byte into this sink.
PrimitiveSinkputBytes(byte[] bytes)
Puts an array of bytes into this sink.
PrimitiveSinkputBytes(byte[] bytes, int off, int len)
Puts a chunk of an array of bytes into this sink.
PrimitiveSinkputChar(char c)
Puts a character into this sink.
PrimitiveSinkputDouble(double d)
Puts a double into this sink.
PrimitiveSinkputFloat(float f)
Puts a float into this sink.
PrimitiveSinkputInt(int i)
Puts an int into this sink.
PrimitiveSinkputLong(long l)
Puts a long into this sink.
PrimitiveSinkputShort(short s)
Puts a short into this sink.
PrimitiveSinkputString(CharSequence charSequence, Charset charset)
Puts a string into this sink using the given charset.
PrimitiveSinkputUnencodedChars(CharSequence charSequence)
Puts each 16-bit code unit from the CharSequence into this sink.