Package org.apache.commons.io.output
Class NullPrintStream
- java.lang.Object
-
- java.io.OutputStream
-
- java.io.FilterOutputStream
-
- java.io.PrintStream
-
- org.apache.commons.io.output.NullPrintStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.Appendable
,java.lang.AutoCloseable
public class NullPrintStream extends java.io.PrintStream
Writes all data to the famous /dev/null.This print stream has no destination (file/socket etc.) and all bytes written to it are ignored and lost.
- Since:
- 2.7
-
-
Field Summary
Fields Modifier and Type Field Description static NullPrintStream
NULL_PRINT_STREAM
The singleton instance.
-
Constructor Summary
Constructors Constructor Description NullPrintStream()
Constructs an instance.
-
Method Summary
-
-
-
Field Detail
-
NULL_PRINT_STREAM
public static final NullPrintStream NULL_PRINT_STREAM
The singleton instance.
-
-