Package ghidra.program.database.util
Interface DBKeyAdapter
-
public interface DBKeyAdapter
Adapter to get an iterator over keys in a table.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DBLongIterator
getKeys(Address start, Address end)
Get an iterator over the keys in the given range.
-
-
-
Method Detail
-
getKeys
DBLongIterator getKeys(Address start, Address end) throws java.io.IOException
Get an iterator over the keys in the given range.- Parameters:
start
- start of rangeend
- end of range (inclusive)- Throws:
java.io.IOException
- if there was a problem accessing the database
-
-