|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectinfo.aduna.iteration.CloseableIterationBase<E,X>
info.aduna.iteration.LookAheadIteration<E,X>
public abstract class LookAheadIteration<E,X extends Exception>
An Iteration that looks one element ahead, if necessary, to handle calls to
hasNext(). This is a convenient super class for Iterations that have
no easy way to tell if there are any more results, but still should implement
the java.util.Iteration interface.
| Constructor Summary | |
|---|---|
LookAheadIteration()
|
|
| Method Summary | |
|---|---|
protected abstract E |
getNextElement()
Gets the next element. |
protected void |
handleClose()
Called by CloseableIterationBase.close() when it is called for the first time. |
boolean |
hasNext()
Returns true if the iteration has more elements. |
E |
next()
Returns the next element in the iteration. |
void |
remove()
Throws an UnsupportedOperationException. |
| Methods inherited from class info.aduna.iteration.CloseableIterationBase |
|---|
close, isClosed |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public LookAheadIteration()
| Method Detail |
|---|
protected abstract E getNextElement()
throws X extends Exception
X extends Exception
public final boolean hasNext()
throws X extends Exception
IterationIteration.next() would return an element
rather than throwing a NoSuchElementException.)
X
X extends Exception
public final E next()
throws X extends Exception
Iteration
X extends Exceptionpublic void remove()
UnsupportedOperationException.
protected void handleClose()
throws X extends Exception
CloseableIterationBaseCloseableIterationBase.close() when it is called for the first time. This method
is only called once on each iteration. By default, this method does
nothing.
handleClose in class CloseableIterationBase<E,X extends Exception>X
X extends Exception
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||