Uses of Interface
com.google.common.io.ByteProcessor
-
Packages that use ByteProcessor Package Description com.google.common.io This package contains utility methods and classes for working with Java 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 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.PreferasByteSource(file).read(processor)
.
-