Uses of Class
com.mckoi.util.ByteBuffer
-
Packages that use ByteBuffer Package Description com.mckoi.database The core database classes for Mckoi.com.mckoi.util Miscellaneous utility classes. -
-
Uses of ByteBuffer in com.mckoi.database
Fields in com.mckoi.database declared as ByteBuffer Modifier and Type Field Description private ByteBuffer
IndexStore.SnapshotIndexSet. buf
A snapshot of the allocation table.private ByteBuffer
IndexStore. index_table_list
The list of table sector entries that are currently committed.Methods in com.mckoi.database that return ByteBuffer Modifier and Type Method Description private ByteBuffer
IndexStore.SnapshotIndexSet. getByteBuffer()
Returns the ByteBuffer for the snapshot of this store when it was created. -
Uses of ByteBuffer in com.mckoi.util
Methods in com.mckoi.util that return ByteBuffer Modifier and Type Method Description ByteBuffer
ByteBuffer. get(byte[] b, int offset, int length)
Gets a byte array from the buffer.ByteBuffer
ByteBuffer. put(byte[] b)
ByteBuffer
ByteBuffer. put(byte[] b, int offset, int length)
Puts a byte array into the buffer.ByteBuffer
ByteBuffer. put(ByteBuffer buffer)
Puts a ByteBuffer in to this buffer.ByteBuffer
ByteBuffer. putByte(byte v)
Puts/Gets a byte into the buffer at the current position.ByteBuffer
ByteBuffer. putInt(int v)
Puts/Gets an integer into the buffer at the current position.ByteBuffer
ByteBuffer. putShort(short v)
Puts/Gets a short into the buffer at the current position.Methods in com.mckoi.util with parameters of type ByteBuffer Modifier and Type Method Description ByteBuffer
ByteBuffer. put(ByteBuffer buffer)
Puts a ByteBuffer in to this buffer.
-