public class VectorIterator extends java.lang.Object implements java.util.Iterator<VectorEntry>
Modifier and Type | Method and Description |
---|---|
boolean |
hasNext() |
VectorEntry |
next() |
void |
remove()
Throws UnsupportedOperationException because you can't remove elements
from a DenseVector.
|
public final boolean hasNext()
hasNext
in interface java.util.Iterator<VectorEntry>
public final VectorEntry next()
next
in interface java.util.Iterator<VectorEntry>
public final void remove()
remove
in interface java.util.Iterator<VectorEntry>