Package ghidra.util.database
Interface DirectedLongKeyIterator
- All Superinterfaces:
DirectedIterator<Long>
- All Known Implementing Classes:
AbstractDirectedLongKeyIterator,BackwardLongKeyIterator,ForwardLongKeyIterator
An iterator over keys of a table
-
Nested Class Summary
Nested classes/interfaces inherited from interface ghidra.util.database.DirectedIterator
DirectedIterator.Direction -
Method Summary
Static MethodsModifier and TypeMethodDescriptiongetIterator(Table table, KeySpan keySpan, DirectedIterator.Direction direction) Get an iterator over the table, restricted to the given range, in the given directionMethods inherited from interface ghidra.util.database.DirectedIterator
delete, hasNext, next
-
Method Details
-
getIterator
static AbstractDirectedLongKeyIterator getIterator(Table table, KeySpan keySpan, DirectedIterator.Direction direction) throws IOException Get an iterator over the table, restricted to the given range, in the given direction- Parameters:
table- the tablekeySpan- the limited rangedirection- the direction- Returns:
- the iterator
- Throws:
IOException- if the table cannot be read
-