Package org.hibernate.collection.spi
Class AbstractPersistentCollection.ListIteratorProxy
- java.lang.Object
-
- org.hibernate.collection.spi.AbstractPersistentCollection.ListIteratorProxy
-
- All Implemented Interfaces:
Iterator<E>
,ListIterator<E>
- Enclosing class:
- AbstractPersistentCollection<E>
protected final class AbstractPersistentCollection.ListIteratorProxy extends Object implements ListIterator<E>
-
-
Constructor Summary
Constructors Constructor Description ListIteratorProxy(ListIterator<E> itr)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(E o)
boolean
hasNext()
boolean
hasPrevious()
E
next()
int
nextIndex()
E
previous()
int
previousIndex()
void
remove()
void
set(E o)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
ListIteratorProxy
public ListIteratorProxy(ListIterator<E> itr)
-
-
Method Detail
-
add
public void add(E o)
- Specified by:
add
in interfaceListIterator<E>
-
hasNext
public boolean hasNext()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfaceListIterator<E>
-
next
public E next()
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfaceListIterator<E>
-
previous
public E previous()
- Specified by:
previous
in interfaceListIterator<E>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfaceListIterator<E>
-
remove
public void remove()
-
set
public void set(E o)
- Specified by:
set
in interfaceListIterator<E>
-
-