Package ghidra.program.model.symbol
Interface ExternalLocationIterator
-
- All Superinterfaces:
java.util.Iterator<ExternalLocation>
- All Known Implementing Classes:
ExternalLocationAdapter
public interface ExternalLocationIterator extends java.util.Iterator<ExternalLocation>
Iterator interface for external locations.- See Also:
CollectionUtils.asIterable(T)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
hasNext()
Returns true if another external location is available with the next() method.ExternalLocation
next()
Returns the next external location
-
-
-
Method Detail
-
hasNext
boolean hasNext()
Returns true if another external location is available with the next() method.- Specified by:
hasNext
in interfacejava.util.Iterator<ExternalLocation>
-
next
ExternalLocation next()
Returns the next external location- Specified by:
next
in interfacejava.util.Iterator<ExternalLocation>
-
-