Class LineReader


  • @Beta
    @GwtIncompatible
    public final class LineReader
    extends 
    A class for reading lines of text. Provides the same functionality as but for all objects, not just instances of .
    Since:
    1.0
    Author:
    Chris Nokleberg
    • Constructor Summary

      Constructors 
      Constructor Description
       readable)
      Creates a new instance that will read lines from the given Readable object.
    • Constructor Detail

      • LineReader

        public  readable)
        Creates a new instance that will read lines from the given Readable object.
    • Method Detail

      • readLine

        public  readLine()
                        throws 
        Reads a line of text. A line is considered to be terminated by any one of a line feed ( '\n'), a carriage return ('\r'), or a carriage return followed immediately by a linefeed ("\r\n").
        Returns:
        a String containing the contents of the line, not including any line-termination characters, or null if the end of the stream has been reached.
        Throws:
        - if an I/O error occurs