Class AbstractIterator<T>
- java.lang.Object
-
- org.apache.cassandra.index.sasi.utils.AbstractIterator<T>
-
- All Implemented Interfaces:
com.google.common.collect.PeekingIterator<T>,java.util.Iterator<T>
- Direct Known Subclasses:
RangeIterator
public abstract class AbstractIterator<T> extends java.lang.Object implements com.google.common.collect.PeekingIterator<T>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classAbstractIterator.State
-
Field Summary
Fields Modifier and Type Field Description protected Tnextprotected AbstractIterator.Statestate
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractIterator()Constructor for use by subclasses.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract TcomputeNext()Returns the next element.protected TendOfData()Implementations ofcomputeNext()must invoke this method when there are no elements left in the iteration.booleanhasNext()Tnext()Tpeek()Returns the next element in the iteration without advancing the iteration, according to the contract ofPeekingIterator.peek().voidremove()protected booleantryToComputeNext()
-
-
-
Field Detail
-
state
protected AbstractIterator.State state
-
next
protected T next
-
-
Method Detail
-
computeNext
protected abstract T computeNext()
Returns the next element. Note: the implementation must callendOfData()when there are no elements left in the iteration. Failure to do so could result in an infinite loop.The initial invocation of
hasNext()ornext()calls this method, as does the first invocation ofhasNextornextfollowing each successful call tonext. Once the implementation either invokesendOfDataor throws an exception,computeNextis guaranteed to never be called again.If this method throws an exception, it will propagate outward to the
hasNextornextinvocation that invoked this method. Any further attempts to use the iterator will result in anIllegalStateException.The implementation of this method may not invoke the
hasNext,next, orpeek()methods on this instance; if it does, anIllegalStateExceptionwill result.- Returns:
- the next element if there was one. If
endOfDatawas called during execution, the return value will be ignored. - Throws:
java.lang.RuntimeException- if any unrecoverable error happens. This exception will propagate outward to thehasNext(),next(), orpeek()invocation that invoked this method. Any further attempts to use the iterator will result in anIllegalStateException.
-
endOfData
protected final T endOfData()
Implementations ofcomputeNext()must invoke this method when there are no elements left in the iteration.- Returns:
null; a convenience so yourcomputeNextimplementation can use the simple statementreturn endOfData();
-
hasNext
public final boolean hasNext()
- Specified by:
hasNextin interfacejava.util.Iterator<T>
-
tryToComputeNext
protected boolean tryToComputeNext()
-
next
public final T next()
-
remove
public void remove()
-
peek
public final T peek()
Returns the next element in the iteration without advancing the iteration, according to the contract ofPeekingIterator.peek().Implementations of
AbstractIteratorthat wish to expose this functionality should implementPeekingIterator.- Specified by:
peekin interfacecom.google.common.collect.PeekingIterator<T>
-
-