| java.lang.Object com.versant.core.ejb.EJBQueryIterator
EJBQueryIterator | public class EJBQueryIterator implements JDOListIterator(Code) | | A ListIterator implemenation that supports forward iteration over the results.
|
close | public void close()(Code) | | Cleanup all resources.
|
hasNext | public boolean hasNext()(Code) | | |
hasPrevious | public boolean hasPrevious()(Code) | | |
next | public Object next()(Code) | | If we have not started yet then execute the query and return the first result.
If we have already started and there is still data available then return the
next data. If we are at the end of the last fetched data then get more
and return the first data.
|
nextIndex | public int nextIndex()(Code) | | |
previousIndex | public int previousIndex()(Code) | | |
remove | public void remove()(Code) | | |
|
|