Package ghidra.program.model.symbol
Class SymbolIteratorAdapter
java.lang.Object
ghidra.program.model.symbol.SymbolIteratorAdapter
- All Implemented Interfaces:
SymbolIterator
,Iterable<Symbol>
,Iterator<Symbol>
-
Field Summary
Fields inherited from interface ghidra.program.model.symbol.SymbolIterator
EMPTY_ITERATOR
-
Constructor Summary
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
SymbolIteratorAdapter
-
-
Method Details
-
hasNext
public boolean hasNext()Description copied from interface:SymbolIterator
Return true if there is a next symbol.- Specified by:
hasNext
in interfaceIterator<Symbol>
- Specified by:
hasNext
in interfaceSymbolIterator
-
next
Description copied from interface:SymbolIterator
Get the next symbol or null if no more symbols.NOTE: This deviates from the standard
Iterator
interface by returning null instead of throwing an exception.- Specified by:
next
in interfaceIterator<Symbol>
- Specified by:
next
in interfaceSymbolIterator
-
remove
public void remove() -
iterator
-