Package ghidra.program.model.symbol
Interface ReferenceIterator
-
- All Known Implementing Classes:
ReferenceIteratorAdapter
public interface ReferenceIterator extends java.util.Iterator<Reference>, java.lang.Iterable<Reference>
Iterator that gives out MemReference objects.- See Also:
CollectionUtils.asIterable(T)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
hasNext()
Returns whether there is a next memory reference in the iterator.Reference
next()
Get the next memory reference.
-
-
-
Method Detail
-
hasNext
boolean hasNext()
Returns whether there is a next memory reference in the iterator.- Specified by:
hasNext
in interfacejava.util.Iterator<Reference>
-
-