Package io.atlassian.fugue
Class Iterables.Join.Iter<A>
- java.lang.Object
-
- io.atlassian.fugue.Iterators.Unmodifiable<A>
-
- io.atlassian.fugue.Iterators.Abstract<A>
-
- io.atlassian.fugue.Iterables.Join.Iter<A>
-
- All Implemented Interfaces:
java.util.Iterator<A>
- Enclosing class:
- Iterables.Join<A>
static class Iterables.Join.Iter<A> extends Iterators.Abstract<A>
-
-
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
-
qas
final java.util.Queue<java.util.Iterator<? extends A>> qas
-
-
Constructor Detail
-
Iter
public Iter(java.lang.Iterable<? extends java.lang.Iterable<? extends A>> ias)
-
-
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>
-
-