Package org.codehaus.groovy.control.io
Class NullWriter
java.lang.Object
java.io.Writer
org.codehaus.groovy.control.io.NullWriter
- All Implemented Interfaces:
Closeable,Flushable,Appendable,AutoCloseable
A Writer that eats its input.
-
Field Details
-
DEFAULT
Shared no-op writer instance.
-
-
Constructor Details
-
NullWriter
public NullWriter()
-
-
Method Details
-
close
public void close()Closes this writer. No action is performed. -
flush
public void flush()Flushes this writer. No action is performed. -
write
public void write(char[] cbuf, int off, int len) Discards the supplied character data.
-