java.lang.Object
java.io.OutputStream
java.io.FilterOutputStream
org.apache.derby.iapi.services.io.DebugByteTeeOutputStream
- class DebugByteTeeOutputStream
- extends java.io.FilterOutputStream
|
Method Summary |
(package private) void |
checkObject(Formatable f)
|
void |
write(byte[] b,
int off,
int len)
This method calls the write(int) method len
times for all bytes from the array buf starting at index
offset. |
void |
write(int b)
This method writes a single byte of output to the underlying
OutputStream. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
tee
private AccessibleByteArrayOutputStream tee
DebugByteTeeOutputStream
DebugByteTeeOutputStream(java.io.OutputStream out)
write
public void write(int b)
throws java.io.IOException
- Description copied from class:
java.io.FilterOutputStream
- This method writes a single byte of output to the underlying
OutputStream.
write
public void write(byte[] b,
int off,
int len)
throws java.io.IOException
- Description copied from class:
java.io.FilterOutputStream
- This method calls the
write(int) method len
times for all bytes from the array buf starting at index
offset. Subclasses should overwrite this method to get a
more efficient implementation.
checkObject
void checkObject(Formatable f)