Class LineArrayListWriter

  • All Implemented Interfaces:
    java.io.Closeable, java.io.Flushable, java.lang.Appendable, java.lang.AutoCloseable

    public class LineArrayListWriter
    extends java.io.Writer
    • Field Summary

      Fields 
      ChangeModifier and Type Field Description
      NEWprotected static java.lang.String LINE_SEPARATOR  
      NEWprotected int lineno  
      NEWprotected java.util.ArrayList<java.lang.StringBuilder> lines  
      • Fields inherited from class java.io.Writer

        lock
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      ChangeModifier and Type Method Description
      void close()  
      void flush()  
      java.util.ArrayList<java.lang.String> getLines()  
      void newLine()  
      java.lang.String toString()  
      void write​(char[] cbuf, int off, int len)  
      • Methods inherited from class java.io.Writer

        append, append, append, nullWriter, write, write, write, write
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • lines NEW

        protected java.util.ArrayList<java.lang.StringBuilder> lines
      • lineno NEW

        protected int lineno
      • LINE_SEPARATOR NEW

        protected static final java.lang.String LINE_SEPARATOR

Constructor Detail

  • Method Detail

    • newLine

      public void newLine()
    • close

      public void close()
                 throws java.io.IOException
      Specified by:
      close in interface java.lang.AutoCloseable
      Specified by:
      close in interface java.io.Closeable
      Specified by:
      close in class java.io.Writer
      Throws:
      java.io.IOException
    • flush

      public void flush()
                 throws java.io.IOException
      Specified by:
      flush in interface java.io.Flushable
      Specified by:
      flush in class java.io.Writer
      Throws:
      java.io.IOException
    • write

      public void write​(char[] cbuf,
                        int off,
                        int len)
                 throws java.io.IOException
      Specified by:
      write in class java.io.Writer
      Throws:
      java.io.IOException
    • getLines

      public java.util.ArrayList<java.lang.String> getLines()
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object