Interface StreamVisitor

All Known Subinterfaces:
OutputHandler, TagHandler
All Known Implementing Classes:
AllTagHandler, BaseTagHandler, StandardTagHandler, StopHandler

public interface StreamVisitor
Visitor used to read lines of InputStream during read operation.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Read line.
  • Method Details

    • readLine

      boolean readLine(String line)
      Read line. Result is a boolean and should indicate if instance of InputStream has a next line to read.
      Parameters:
      line - Line.
      Returns:
      true if next line should be read, false otherwise.