org.pentaho.reporting.libraries.repository.dummy
public class NullOutputStream extends OutputStream implements Serializable
Constructor Summary | |
---|---|
NullOutputStream()
Default constructor. |
Method Summary | |
---|---|
void | write(int i)
Writes to the stream (in this case, does nothing).
|
void | write(byte[] bytes)
Writes to the stream (in this case, does nothing).
|
void | write(byte[] bytes, int off, int len)
Writes to the stream (in this case, does nothing).
|
Parameters: i the value.
Throws: java.io.IOException if there is an I/O problem.
Parameters: bytes the bytes.
Throws: java.io.IOException if there is an I/O problem.
Parameters: bytes the bytes. off the start offset in the data. len the number of bytes to write.
Throws: java.io.IOException if there is an I/O problem.