Class ListStoreIterator<E>
- java.lang.Object
-
- org.datanucleus.store.rdbms.scostore.ListStoreIterator<E>
-
- Type Parameters:
E- Element type of the list store
- All Implemented Interfaces:
Iterator<E>,ListIterator<E>
public class ListStoreIterator<E> extends Object implements ListIterator<E>
ListStore iterator for RDBMS datastores.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(E elem)protected org.datanucleus.metadata.AbstractMemberMetaDatagetOwnerMemberMetaData(Table containerTable)booleanhasNext()booleanhasPrevious()Enext()protected booleannext(Object resultSet)intnextIndex()Eprevious()intpreviousIndex()voidremove()voidset(E elem)-
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
-
-
-
-
Method Detail
-
add
public void add(E elem)
- Specified by:
addin interfaceListIterator<E>
-
hasNext
public boolean hasNext()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPreviousin interfaceListIterator<E>
-
next
public E next()
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfaceListIterator<E>
-
previous
public E previous()
- Specified by:
previousin interfaceListIterator<E>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfaceListIterator<E>
-
remove
public void remove()
-
set
public void set(E elem)
- Specified by:
setin interfaceListIterator<E>
-
getOwnerMemberMetaData
protected org.datanucleus.metadata.AbstractMemberMetaData getOwnerMemberMetaData(Table containerTable)
-
next
protected boolean next(Object resultSet) throws MappedDatastoreException
- Throws:
MappedDatastoreException
-
-