public class FloatListIteratorListIterator extends Object implements ListIterator
FloatListIterator to the
ListIterator interface.
This implementation delegates most methods
to the provided FloatListIterator
implementation in the "obvious" way.| Constructor and Description |
|---|
FloatListIteratorListIterator(FloatListIterator iterator)
Creates an
ListIterator wrapping
the specified FloatListIterator. |
| Modifier and Type | Method and Description |
|---|---|
void |
add(Object obj) |
boolean |
hasNext() |
boolean |
hasPrevious() |
Object |
next() |
int |
nextIndex() |
Object |
previous() |
int |
previousIndex() |
void |
remove() |
void |
set(Object obj) |
static ListIterator |
wrap(FloatListIterator iterator)
Create a
ListIterator wrapping
the specified FloatListIterator. |
public FloatListIteratorListIterator(FloatListIterator iterator)
ListIterator wrapping
the specified FloatListIterator.public static ListIterator wrap(FloatListIterator iterator)
ListIterator wrapping
the specified FloatListIterator. When
the given iterator is null,
returns null.iterator - the (possibly null)
FloatListIterator to wrapListIterator wrapping the given
iterator, or null when iterator is
null.public int nextIndex()
nextIndex in interface ListIteratorpublic int previousIndex()
previousIndex in interface ListIteratorpublic boolean hasNext()
hasNext in interface IteratorhasNext in interface ListIteratorpublic boolean hasPrevious()
hasPrevious in interface ListIteratorpublic Object next()
next in interface Iteratornext in interface ListIteratorpublic Object previous()
previous in interface ListIteratorpublic void add(Object obj)
add in interface ListIteratorpublic void set(Object obj)
set in interface ListIteratorpublic void remove()
remove in interface Iteratorremove in interface ListIteratorCopyright © 2002-2013 The Apache Software Foundation. All Rights Reserved.