Package com.google.common.io
Interface LineProcessor<T extends @Nullable java.lang.Object>
-
@GwtIncompatible public interface LineProcessor<T extends @Nullable java.lang.Object>
A callback to be used with the streamingreadLines
methods.processLine(java.lang.String)
will be called for each line that is read, and should returnfalse
when you want to stop processing.- Since:
- 1.0
- Author:
- Miles Barr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
getResult()
Return the result of processing all the lines.boolean
processLine(java.lang.String line)
This method will be called once for each line.
-
-
-
Method Detail
-
processLine
@CanIgnoreReturnValue boolean processLine(java.lang.String line) throws java.io.IOException
This method will be called once for each line.- Parameters:
line
- the line read from the input, without delimiter- Returns:
- true to continue processing, false to stop
- Throws:
java.io.IOException
-
-