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 booleanhasNext()Returns true if another external location is available with the next() method.ExternalLocationnext()Returns the next external location
-
-
-
Method Detail
-
hasNext
boolean hasNext()
Returns true if another external location is available with the next() method.- Specified by:
hasNextin interfacejava.util.Iterator<ExternalLocation>
-
next
ExternalLocation next()
Returns the next external location- Specified by:
nextin interfacejava.util.Iterator<ExternalLocation>
-
-