public class SingletonListIterator<E> extends Object implements ResettableListIterator<E>
SingletonIterator
is an ListIterator
over a single
object instance.Constructor and Description |
---|
SingletonListIterator(E object)
Constructs a new
SingletonListIterator . |
Modifier and Type | Method and Description |
---|---|
void |
add(E obj)
Add always throws
UnsupportedOperationException . |
boolean |
hasNext()
Is another object available from the iterator?
|
boolean |
hasPrevious()
Is a previous object available from the iterator?
|
E |
next()
Get the next object from the iterator.
|
int |
nextIndex()
Returns the index of the element that would be returned by a subsequent
call to next.
|
E |
previous()
Get the previous object from the iterator.
|
int |
previousIndex()
Returns the index of the element that would be returned by a subsequent
call to previous.
|
void |
remove()
Remove the object from this iterator.
|
void |
reset()
Reset the iterator back to the start.
|
void |
set(E obj)
Set sets the value of the singleton.
|
public SingletonListIterator(E object)
SingletonListIterator
.object
- the single object to return from the iteratorpublic boolean hasNext()
This returns true if the single object hasn't been returned yet.
public boolean hasPrevious()
This returns true if the single object has been returned.
hasPrevious
in interface ListIterator<E>
hasPrevious
in interface OrderedIterator<E>
public int nextIndex()
nextIndex
in interface ListIterator<E>
public int previousIndex()
previousIndex
in interface ListIterator<E>
public E next()
This returns the single object if it hasn't been returned yet.
next
in interface Iterator<E>
next
in interface ListIterator<E>
NoSuchElementException
- if the single object has already
been returnedpublic E previous()
This returns the single object if it has been returned.
previous
in interface ListIterator<E>
previous
in interface OrderedIterator<E>
NoSuchElementException
- if the single object has not already
been returnedpublic void remove()
remove
in interface Iterator<E>
remove
in interface ListIterator<E>
IllegalStateException
- if the next or previous
method has not yet been called, or the remove method
has already been called after the last call to next
or previous.public void add(E obj)
UnsupportedOperationException
.add
in interface ListIterator<E>
obj
- the object to addUnsupportedOperationException
- alwayspublic void set(E obj)
set
in interface ListIterator<E>
obj
- the object to setIllegalStateException
- if next has not been called
or the object has been removedpublic void reset()
reset
in interface ResettableIterator<E>
Copyright © 2001–2013 The Apache Software Foundation. All rights reserved.