Package org.apache.openjpa.kernel
Class DelegatingResultList.DelegatingListIterator<T>
java.lang.Object
org.apache.openjpa.kernel.DelegatingResultList.DelegatingListIterator<T>
- All Implemented Interfaces:
Iterator<T>
,ListIterator<T>
- Enclosing class:
- DelegatingResultList<T>
public class DelegatingResultList.DelegatingListIterator<T>
extends Object
implements ListIterator<T>
Delegating iterator that also performs exception translation.
-
Constructor Details
-
DelegatingListIterator
Constructor; supply delegate.
-
-
Method Details
-
getDelegate
Return the direct delegate. -
getInnermostDelegate
Return the native delegate. -
hashCode
public int hashCode() -
equals
-
hasNext
public boolean hasNext() -
next
-
hasPrevious
public boolean hasPrevious()- Specified by:
hasPrevious
in interfaceListIterator<T>
-
previous
- Specified by:
previous
in interfaceListIterator<T>
-
nextIndex
public int nextIndex()- Specified by:
nextIndex
in interfaceListIterator<T>
-
previousIndex
public int previousIndex()- Specified by:
previousIndex
in interfaceListIterator<T>
-
remove
public void remove() -
set
- Specified by:
set
in interfaceListIterator<T>
-
add
- Specified by:
add
in interfaceListIterator<T>
-