| com.db4o.marshall.ReadBuffer
All known Subclasses: com.db4o.internal.Buffer,
ReadBuffer | public interface ReadBuffer (Code) | | a buffer interface with methods to read.
|
Method Summary | |
byte | readByte() reads a byte from the buffer. | void | readBytes(byte[] bytes) reads an array of bytes from the buffer.
The length of the array that is passed as a parameter specifies the
number of bytes that are to be read. | int | readInt() reads an int from the buffer. | long | readLong() reads a long from the buffer. |
readByte | byte readByte()(Code) | | reads a byte from the buffer.
the byte |
readBytes | void readBytes(byte[] bytes)(Code) | | reads an array of bytes from the buffer.
The length of the array that is passed as a parameter specifies the
number of bytes that are to be read. The passed bytes buffer parameter
is directly filled.
Parameters: bytes - the byte array to read the bytes into. |
readInt | int readInt()(Code) | | reads an int from the buffer.
the int |
readLong | long readLong()(Code) | | reads a long from the buffer.
the long |
|
|