java.util.Iterator<K>
, java.util.ListIterator<K>
public class SafeFeedbackListIterator<K>
extends java.lang.Object
implements java.util.ListIterator<K>
Constructor | Description |
---|---|
SafeFeedbackListIterator(java.util.ListIterator<K> iter,
SafeCollectionHost collection) |
Modifier and Type | Method | Description |
---|---|---|
void |
add(K e) |
|
void |
finalize() |
|
boolean |
hasNext() |
|
boolean |
hasPrevious() |
|
K |
next() |
|
int |
nextIndex() |
|
K |
previous() |
|
int |
previousIndex() |
|
void |
remove() |
|
void |
set(K e) |
public SafeFeedbackListIterator(java.util.ListIterator<K> iter, SafeCollectionHost collection)
public void finalize() throws java.lang.Throwable
finalize
in class java.lang.Object
java.lang.Throwable
public boolean hasNext()
public K next()
public void remove()
public boolean hasPrevious()
hasPrevious
in interface java.util.ListIterator<K>
public int nextIndex()
nextIndex
in interface java.util.ListIterator<K>
public int previousIndex()
previousIndex
in interface java.util.ListIterator<K>