com.google.common.io
Class NullOutputStream
java.lang.Object
  
java.io.OutputStream
      
com.google.common.io.NullOutputStream
- All Implemented Interfaces: 
 - Closeable, Flushable
 
public class NullOutputStream
- extends OutputStream
 
Implementation of OutputStream that simply discards written bytes.
- Since:
 
  - 2009.09.15 tentative
 
- Author:
 
  - Spencer Kimball
 
 
| 
Method Summary | 
 void | 
write(byte[] b,
      int off,
      int len)
 
          Discards the specified byte array. | 
 void | 
write(int b)
 
          Discards the specified byte. | 
 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
NullOutputStream
public NullOutputStream()
write
public void write(int b)
- Discards the specified byte.
- Specified by:
 write in class OutputStream
 
 
 
write
public void write(byte[] b,
                  int off,
                  int len)
- Discards the specified byte array.
- Overrides:
 write in class OutputStream