Package ghidra.program.model.address
Interface AddressIterator
- 
- All Known Implementing Classes:
- AddressIteratorAdapter,- AddressIteratorConverter,- AddressKeyAddressIterator,- CommentTypeFilterAddressIterator,- EmptyAddressIterator,- IndexedAddressIterator
 
 public interface AddressIterator extends java.util.Iterator<Address>, java.lang.Iterable<Address> AddressIterator is used to iterate over some set of addresses. Note: The next and previous methods return Addresss. - See Also:
- CollectionUtils.asIterable(T)
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasNext()Checks if there is a next address in the iteration.Addressnext()Get the next address.
 
- 
- 
- 
Method Detail- 
nextAddress next() Get the next address.- Specified by:
- nextin interface- java.util.Iterator<Address>
- Returns:
- the next address in the iteration.
 
 - 
hasNextboolean hasNext() Checks if there is a next address in the iteration.- Specified by:
- hasNextin interface- java.util.Iterator<Address>
- Returns:
- true if there is a next address.
 
 
- 
 
-