public class VectorIterator extends java.lang.Object implements java.util.Iterator<VectorObject>
Modifier and Type | Method and Description |
---|---|
void |
finalize() |
boolean |
hasNext()
Returns true if there's another vector object in the list.
|
VectorObject |
next()
Return the next vector object in the list.
|
void |
remove()
This will do nothing.
|
public void finalize()
finalize
in class java.lang.Object
public boolean hasNext()
hasNext
in interface java.util.Iterator<VectorObject>
public VectorObject next()
next
in interface java.util.Iterator<VectorObject>
public void remove()
remove
in interface java.util.Iterator<VectorObject>