Package io.atlassian.fugue
Class Iterables.Drop.Iter<A>
- java.lang.Object
-
- io.atlassian.fugue.Iterators.Unmodifiable<A>
-
- io.atlassian.fugue.Iterators.Abstract<A>
-
- io.atlassian.fugue.Iterables.Drop.Iter<A>
-
- All Implemented Interfaces:
java.util.Iterator<A>
- Enclosing class:
- Iterables.Drop<A>
static final class Iterables.Drop.Iter<A> extends Iterators.Abstract<A>
-
-
Field Summary
Fields Modifier and Type Field Description private Iterators.Peeking<A>as
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected AcomputeNext()The next element.-
Methods inherited from class io.atlassian.fugue.Iterators.Abstract
endOfData, hasNext, next
-
Methods inherited from class io.atlassian.fugue.Iterators.Unmodifiable
remove
-
-
-
-
Field Detail
-
as
private final Iterators.Peeking<A> as
-
-
Method Detail
-
computeNext
protected A computeNext()
Description copied from class:Iterators.AbstractThe next element.Note: the implementation must call
Iterators.Abstract.endOfData()when there are no elements left in the iteration. Failure to do so could result in an infinite loop.- Specified by:
computeNextin classIterators.Abstract<A>
-
-