Uses of Interface
com.google.common.io.LineProcessor

Packages that use LineProcessor
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 LineProcessor in com.google.common.io
 

Methods in com.google.common.io with parameters of type LineProcessor
static
<T> T
Files.readLines(File file, Charset charset, LineProcessor<T> callback)
          Streams lines from a File, stopping when our callback returns false, or we have read all of the lines.
static
<R extends Readable & Closeable,T>
T
CharStreams.readLines(InputSupplier<R> supplier, LineProcessor<T> callback)
          Streams lines from a Readable and Closeable object supplied by a factory, stopping when our callback returns false, or we have read all of the lines.
static
<T> T
Resources.readLines(URL url, Charset charset, LineProcessor<T> callback)
          Streams lines from a URL, stopping when our callback returns false, or we have read all of the lines.