T
public class OneItemIterator<T> extends Object implements IterableIterator<T>
private T
object
OneItemIterator(T object)
boolean
hasNext()
Iterator<T>
iterator()
next()
void
remove()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
private T object
public OneItemIterator(T object)
public boolean hasNext()
hasNext
public T next()
next
public void remove()
remove
public Iterator<T> iterator()
iterator
Iterable<T>