Package ghidra.program.util
Class AddressIteratorConverter
java.lang.Object
ghidra.program.util.AddressIteratorConverter
- All Implemented Interfaces:
AddressIterator
,Iterable<Address>
,Iterator<Address>
-
Field Summary
Fields inherited from interface ghidra.program.model.address.AddressIterator
EMPTY_ITERATOR
-
Constructor Summary
ConstructorDescriptionAddressIteratorConverter
(Program iteratorsProgram, AddressIterator iterator, Program otherProgram) -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
AddressIteratorConverter
public AddressIteratorConverter(Program iteratorsProgram, AddressIterator iterator, Program otherProgram)
-
-
Method Details
-
hasNext
public boolean hasNext()Description copied from interface:AddressIterator
Checks if there is a next address in the iteration.- Specified by:
hasNext
in interfaceAddressIterator
- Specified by:
hasNext
in interfaceIterator<Address>
- Returns:
- true if there is a next address.
-
next
Description copied from interface:AddressIterator
Get the next address.NOTE: This deviates from the standard
Iterator
interface by returning null instead of throwing an exception.- Specified by:
next
in interfaceAddressIterator
- Specified by:
next
in interfaceIterator<Address>
- Returns:
- the next address in the iteration.
-
remove
public void remove() -
iterator
- Specified by:
iterator
in interfaceAddressIterator
- Specified by:
iterator
in interfaceIterable<Address>
-