Uses of Interface
com.google.common.io.ByteProcessor
-
Packages that use ByteProcessor Package Description com.google.common.io Utility methods and classes for I/O; for example input streams, output streams, readers, writers, and files. -
-
Uses of ByteProcessor in com.google.common.io
Methods in com.google.common.io with parameters of type ByteProcessor Modifier and Type Method Description <T extends @Nullable java.lang.Object>
TByteSource. read(ByteProcessor<T> processor)
Reads the contents of this byte source using the givenprocessor
to process bytes as they are read.static <T extends @Nullable java.lang.Object>
TByteStreams. readBytes(java.io.InputStream input, ByteProcessor<T> processor)
Process the bytes of the given input stream using the given processor.static <T extends @Nullable java.lang.Object>
TFiles. readBytes(java.io.File file, ByteProcessor<T> processor)
Deprecated.PreferasByteSource(file).read(processor)
.
-