| |
|
| java.lang.Object java.io.OutputStream org.hsqldb.lib.HsqlByteArrayOutputStream
All known Subclasses: org.hsqldb.rowio.RowOutputBase,
HsqlByteArrayOutputStream | public class HsqlByteArrayOutputStream extends java.io.OutputStream implements DataOutput(Code) | | This class is a replacement for both java.io.ByteArrayOuputStream
(without synchronization) and java.io.DataOutputStream
author: fredt@users version: 1.7.2 since: 1.7.0 |
Field Summary | |
protected byte[] | buf | protected int | count |
count | protected int count(Code) | | |
HsqlByteArrayOutputStream | public HsqlByteArrayOutputStream()(Code) | | |
HsqlByteArrayOutputStream | public HsqlByteArrayOutputStream(int size)(Code) | | |
HsqlByteArrayOutputStream | public HsqlByteArrayOutputStream(byte[] buffer)(Code) | | |
ensureRoom | protected void ensureRoom(int extra)(Code) | | |
fill | public void fill(int b, int len)(Code) | | |
getBuffer | public byte[] getBuffer()(Code) | | |
reset | public void reset()(Code) | | |
reset | protected void reset(int newSize)(Code) | | |
toByteArray | public byte[] toByteArray()(Code) | | |
write | public void write(int b)(Code) | | |
write | public void write(byte[] b)(Code) | | |
write | public void write(byte[] b, int off, int len)(Code) | | |
writeDouble | final public void writeDouble(double v)(Code) | | |
writeFloat | final public void writeFloat(float v)(Code) | | |
writeInt | final public void writeInt(int v)(Code) | | |
writeLong | final public void writeLong(long v)(Code) | | |
writeShort | final public void writeShort(int v)(Code) | | |
|
|
|