Package com.ibm.wala.util.graph.impl
Class NumberedNodeIterator<T>
- java.lang.Object
-
- com.ibm.wala.util.graph.impl.NumberedNodeIterator<T>
-
-
Constructor Summary
Constructors Constructor Description NumberedNodeIterator(IntSet s, NumberedNodeManager<T> nodeManager)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
T
next()
void
remove()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
NumberedNodeIterator
public NumberedNodeIterator(IntSet s, NumberedNodeManager<T> nodeManager)
- Throws:
IllegalArgumentException
- if s is null
-
-
Method Detail
-
next
public T next() throws NoSuchElementException
- Specified by:
next
in interfaceIterator<T>
- Throws:
NoSuchElementException
-
remove
public void remove() throws UnsupportedOperationException
- Specified by:
remove
in interfaceIterator<T>
- Throws:
UnsupportedOperationException
-
-