Class IndentWriter

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

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

      Fields 
      Modifier and Type Field Description
      private java.lang.String indent  
      java.io.Writer inner  
      private boolean prependIndent  
      • Fields inherited from class java.io.Writer

        lock
    • Constructor Summary

      Constructors 
      Constructor Description
      IndentWriter​(java.io.Writer inner, java.lang.String indent)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void close()  
      void flush()  
      void flushIndent()  
      void write​(char[] chars, int off, int len)  
      private void writeLine​(char[] chars, 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, toString, wait, wait, wait
    • Field Detail

      • inner

        public final java.io.Writer inner
      • indent

        private final java.lang.String indent
      • prependIndent

        private boolean prependIndent
    • Constructor Detail

      • IndentWriter

        public IndentWriter​(java.io.Writer inner,
                            java.lang.String indent)
    • Method Detail

      • write

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

        public void flushIndent()
                         throws java.io.IOException
        Throws:
        java.io.IOException
      • writeLine

        private void writeLine​(char[] chars,
                               int off,
                               int len)
                        throws java.io.IOException
        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
      • 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