public interface RecordIterator
BTree
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the iterator, freeing any resources that it uses.
|
byte[] |
next()
Returns the next record in the BTree.
|
void |
set(byte[] record)
Replaces the last record returned by
next() with the specified
record. |
byte[] next() throws IOException
IOException
- In case an I/O error occurred.void set(byte[] record) throws IOException
next()
with the specified
record.IOException
- In case an I/O error occurred.void close() throws IOException
IOException
- In case an I/O error occurred.Copyright © 2001-2016 Aduna. All Rights Reserved.