Uses of Interface
com.google.common.io.ByteProcessor
Packages that use 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
Methods in com.google.common.io with parameters of type ByteProcessorModifier and TypeMethodDescription<T extends @Nullable 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 Object>
TByteStreams.readBytes
(InputStream input, ByteProcessor<T> processor) Process the bytes of the given input stream using the given processor.static <T extends @Nullable Object>
TFiles.readBytes
(File file, ByteProcessor<T> processor) Deprecated.
asByteSource(file).read(processor)
.