public static interface LargeAsciiTable.LineProcessor
Note:
This interface is mainly used by the streaming functions in
LargeAsciiTable
, in order to process all streamed lines.
LargeAsciiTable.streamRaw(LineProcessor, char)
,
LargeAsciiTable.streamAligned(LineProcessor, int[], char, Thread)
Modifier and Type | Method and Description |
---|---|
boolean |
process(java.lang.String line)
Process the given line.
|
boolean process(java.lang.String line) throws LargeAsciiTable.LineProcessorException
line
- Line to process. May be NULL.true
if the line has been successfully
processed,
false
otherwise.LargeAsciiTable.LineProcessorException
- If there was a grave error while
processing the given line.