| com.db4o.marshall.WriteBuffer
All known Subclasses: com.db4o.internal.MarshallingBuffer, com.db4o.internal.Buffer,
WriteBuffer | public interface WriteBuffer (Code) | | a buffer interface with write methods.
|
writeByte | void writeByte(byte b)(Code) | | writes a single byte to the buffer.
Parameters: b - the byte |
writeBytes | void writeBytes(byte[] bytes)(Code) | | writes an array of bytes to the buffer
Parameters: bytes - the byte array |
writeInt | void writeInt(int i)(Code) | | writes an int to the buffer.
Parameters: i - the int |
writeLong | void writeLong(long l)(Code) | | writes a long to the buffer
Parameters: l - the long |
|
|