Package ghidra.program.model.address
Class EmptyAddressIterator
- java.lang.Object
-
- ghidra.program.model.address.EmptyAddressIterator
-
- All Implemented Interfaces:
AddressIterator
,java.lang.Iterable<Address>
,java.util.Iterator<Address>
public class EmptyAddressIterator extends java.lang.Object implements AddressIterator
Implementation for an AddressIterator that is empty.
-
-
Field Summary
-
Fields inherited from interface ghidra.program.model.address.AddressIterator
EMPTY_ITERATOR
-
-
Constructor Summary
Constructors Constructor Description EmptyAddressIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
Checks if there is a next address in the iteration.java.util.Iterator<Address>
iterator()
Address
next()
Get the next address.void
remove()
-
-
-
Method Detail
-
next
public 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 interfacejava.util.Iterator<Address>
- Returns:
- the next address in the iteration.
- See Also:
AddressIterator.next()
-
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 interfacejava.util.Iterator<Address>
- Returns:
- true if there is a next address.
- See Also:
AddressIterator.hasNext()
-
remove
public void remove()
- Specified by:
remove
in interfacejava.util.Iterator<Address>
- See Also:
Iterator.remove()
-
-