Package jadex.commons
Class NullOutputStream
- java.lang.Object
- 
- java.io.OutputStream
- 
- jadex.commons.NullOutputStream
 
 
- 
- All Implemented Interfaces:
- java.io.Closeable,- java.io.Flushable,- java.lang.AutoCloseable
 
 public class NullOutputStream extends java.io.OutputStreamAn output stream that writes to dev null.
- 
- 
Constructor SummaryConstructors Constructor Description NullOutputStream()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidwrite(byte[] b)Write to dev null.voidwrite(byte[] b, int off, int len)Write to dev null.voidwrite(int b)Write to dev null.
 
- 
- 
- 
Method Detail- 
writepublic void write(int b) throws java.io.IOExceptionWrite to dev null.- Specified by:
- writein class- java.io.OutputStream
- Throws:
- java.io.IOException
 
 - 
writepublic void write(byte[] b, int off, int len) throws java.io.IOExceptionWrite to dev null.- Overrides:
- writein class- java.io.OutputStream
- Throws:
- java.io.IOException
 
 - 
writepublic void write(byte[] b) throws java.io.IOExceptionWrite to dev null.- Overrides:
- writein class- java.io.OutputStream
- Throws:
- java.io.IOException
 
 
- 
 
-