Interface StreamVisitor
-
- All Known Subinterfaces:
OutputHandler
,TagHandler
- All Known Implementing Classes:
AllTagHandler
,BaseTagHandler
,StandardTagHandler
,StopHandler
public interface StreamVisitor
Visitor used to read lines ofInputStream
during read operation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
readLine(String line)
Read line.
-
-
-
Method Detail
-
readLine
boolean readLine(String line)
Read line. Result is a boolean and should indicate if instance ofInputStream
has a next line to read.- Parameters:
line
- Line.- Returns:
true
if next line should be read,false
otherwise.
-
-