@StoreNotUseStandardSerialization @StorableClass public class ArrayListSupportIterator<E> extends Object implements ListIterator<E>, Serializable
Modifier | Constructor and Description |
---|---|
protected |
ArrayListSupportIterator(ArrayListSupport<E> arrayList) |
protected |
ArrayListSupportIterator(ArrayListSupport<E> arrayList,
int index) |
Modifier and Type | Method and Description |
---|---|
void |
add(E element) |
boolean |
hasNext() |
boolean |
hasPrevious() |
static ArrayListSupportIterator |
newInstance(IInstanceFactory instanceFactory,
ArrayListSupport arrayList) |
static ArrayListSupportIterator |
newInstance(IInstanceFactory instanceFactory,
ArrayListSupport arrayList,
int index) |
E |
next() |
int |
nextIndex() |
E |
previous() |
int |
previousIndex() |
void |
remove() |
void |
set(E element) |
protected ArrayListSupportIterator(ArrayListSupport<E> arrayList)
protected ArrayListSupportIterator(ArrayListSupport<E> arrayList, int index)
public static ArrayListSupportIterator newInstance(IInstanceFactory instanceFactory, ArrayListSupport arrayList)
public static ArrayListSupportIterator newInstance(IInstanceFactory instanceFactory, ArrayListSupport arrayList, int index)
public boolean hasNext()
public E next()
public boolean hasPrevious()
hasPrevious
in interface ListIterator<E>
public E previous()
previous
in interface ListIterator<E>
public void remove()
public void add(E element)
add
in interface ListIterator<E>
public int nextIndex()
nextIndex
in interface ListIterator<E>
public int previousIndex()
previousIndex
in interface ListIterator<E>
public void set(E element)
set
in interface ListIterator<E>
Copyright © 2007-2012 Luc Peuvrier. All Rights Reserved.