Package com.google.common.hash
Class Funnels
- java.lang.Object
-
- com.google.common.hash.Funnels
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.io.OutputStream
asOutputStream(PrimitiveSink sink)
Wraps aPrimitiveSink
as anOutputStream
, so it is easy tofunnel
an object to aPrimitiveSink
if there is already a way to write the contents of the object to anOutputStream
.static Funnel<byte[]>
byteArrayFunnel()
Returns a funnel that extracts the bytes from abyte
array.static Funnel<java.lang.Integer>
integerFunnel()
Returns a funnel for integers.static Funnel<java.lang.Long>
longFunnel()
Returns a funnel for longs.static <E extends @Nullable java.lang.Object>
Funnel<java.lang.Iterable<? extends E>>sequentialFunnel(Funnel<E> elementFunnel)
Returns a funnel that processes anIterable
by funneling its elements in iteration order with the specified funnel.static Funnel<java.lang.CharSequence>
stringFunnel(java.nio.charset.Charset charset)
Returns a funnel that encodes the characters of aCharSequence
with the specifiedCharset
.static Funnel<java.lang.CharSequence>
unencodedCharsFunnel()
Returns a funnel that extracts the characters from aCharSequence
, a character at a time, without performing any encoding.
-
-
-
Method Detail
-
byteArrayFunnel
public static Funnel<byte[]> byteArrayFunnel()
Returns a funnel that extracts the bytes from abyte
array.
-
unencodedCharsFunnel
public static Funnel<java.lang.CharSequence> unencodedCharsFunnel()
Returns a funnel that extracts the characters from aCharSequence
, a character at a time, without performing any encoding. If you need to use a specific encoding, usestringFunnel(Charset)
instead.- Since:
- 15.0 (since 11.0 as
Funnels.stringFunnel()
.
-
stringFunnel
public static Funnel<java.lang.CharSequence> stringFunnel(java.nio.charset.Charset charset)
Returns a funnel that encodes the characters of aCharSequence
with the specifiedCharset
.- Since:
- 15.0
-
integerFunnel
public static Funnel<java.lang.Integer> integerFunnel()
Returns a funnel for integers.- Since:
- 13.0
-
sequentialFunnel
public static <E extends @Nullable java.lang.Object> Funnel<java.lang.Iterable<? extends E>> sequentialFunnel(Funnel<E> elementFunnel)
Returns a funnel that processes anIterable
by funneling its elements in iteration order with the specified funnel. No separators are added between the elements.- Since:
- 15.0
-
longFunnel
public static Funnel<java.lang.Long> longFunnel()
Returns a funnel for longs.- Since:
- 13.0
-
asOutputStream
public static java.io.OutputStream asOutputStream(PrimitiveSink sink)
Wraps aPrimitiveSink
as anOutputStream
, so it is easy tofunnel
an object to aPrimitiveSink
if there is already a way to write the contents of the object to anOutputStream
.The
close
andflush
methods of the returnedOutputStream
do nothing, and no method throwsIOException
.- Since:
- 13.0
-
-