Uses of Interface
com.google.common.io.ByteProcessor
Package
Description
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
Modifier and TypeMethodDescriptionByteSource.read
(ByteProcessor<T> processor) Reads the contents of this byte source using the givenprocessor
to process bytes as they are read.ByteStreams.readBytes
(InputStream input, ByteProcessor<T> processor) Process the bytes of the given input stream using the given processor.Files.readBytes
(File file, ByteProcessor<T> processor) Deprecated.
asByteSource(file).read(processor)
.