Package groovy.text.markup
Class DelegatingIndentWriter
java.lang.Object
java.io.Writer
groovy.text.markup.DelegatingIndentWriter
- All Implemented Interfaces:
- java.io.Closeable,- java.io.Flushable,- java.lang.Appendable,- java.lang.AutoCloseable
public class DelegatingIndentWriter
extends java.io.Writer
A writer which delegates to another writer and supports an additional indenting level.
- 
Field SummaryFields Modifier and Type Field Description static java.lang.StringSPACESstatic java.lang.StringTABFields inherited from class java.io.Writerlock
- 
Constructor SummaryConstructors Constructor Description DelegatingIndentWriter(java.io.Writer delegate)DelegatingIndentWriter(java.io.Writer delegate, java.lang.String indentString)
- 
Method SummaryModifier and Type Method Description java.io.Writerappend(char c)java.io.Writerappend(java.lang.CharSequence csq)java.io.Writerappend(java.lang.CharSequence csq, int start, int end)voidclose()voidflush()intnext()intprevious()voidwrite(char[] cbuf)voidwrite(char[] cbuf, int off, int len)voidwrite(int c)voidwrite(java.lang.String str)voidwrite(java.lang.String str, int off, int len)voidwriteIndent()Methods inherited from class java.io.WriternullWriterMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- 
Field Details- 
SPACESpublic static final java.lang.String SPACES- See Also:
- Constant Field Values
 
- 
TABpublic static final java.lang.String TAB- See Also:
- Constant Field Values
 
 
- 
- 
Constructor Details- 
DelegatingIndentWriterpublic DelegatingIndentWriter(java.io.Writer delegate)
- 
DelegatingIndentWriterpublic DelegatingIndentWriter(java.io.Writer delegate, java.lang.String indentString)
 
- 
- 
Method Details- 
writepublic void write(int c) throws java.io.IOException- Overrides:
- writein class- java.io.Writer
- Throws:
- java.io.IOException
 
- 
writepublic void write(char[] cbuf) throws java.io.IOException- Overrides:
- writein class- java.io.Writer
- Throws:
- java.io.IOException
 
- 
writepublic void write(char[] cbuf, int off, int len) throws java.io.IOException- Specified by:
- writein class- java.io.Writer
- Throws:
- java.io.IOException
 
- 
writepublic void write(java.lang.String str) throws java.io.IOException- Overrides:
- writein class- java.io.Writer
- Throws:
- java.io.IOException
 
- 
writepublic void write(java.lang.String str, int off, int len) throws java.io.IOException- Overrides:
- writein class- java.io.Writer
- Throws:
- java.io.IOException
 
- 
appendpublic java.io.Writer append(java.lang.CharSequence csq) throws java.io.IOException- Specified by:
- appendin interface- java.lang.Appendable
- Overrides:
- appendin class- java.io.Writer
- Throws:
- java.io.IOException
 
- 
appendpublic java.io.Writer append(java.lang.CharSequence csq, int start, int end) throws java.io.IOException- Specified by:
- appendin interface- java.lang.Appendable
- Overrides:
- appendin class- java.io.Writer
- Throws:
- java.io.IOException
 
- 
appendpublic java.io.Writer append(char c) throws java.io.IOException- Specified by:
- appendin interface- java.lang.Appendable
- Overrides:
- appendin class- java.io.Writer
- Throws:
- java.io.IOException
 
- 
flushpublic void flush() throws java.io.IOException- Specified by:
- flushin interface- java.io.Flushable
- Specified by:
- flushin class- java.io.Writer
- Throws:
- java.io.IOException
 
- 
closepublic void close() throws java.io.IOException- Specified by:
- closein interface- java.lang.AutoCloseable
- Specified by:
- closein interface- java.io.Closeable
- Specified by:
- closein class- java.io.Writer
- Throws:
- java.io.IOException
 
- 
nextpublic int next()
- 
previouspublic int previous()
- 
writeIndentpublic void writeIndent() throws java.io.IOException- Throws:
- java.io.IOException
 
 
-