public class JoinedIterator<T>
extends Object
implements Iterator<T>
An Iterator implementation that wraps other Iterators, and presents them all as one
continuous Iterator. When any method from Iterator is called, we delegate to each
wrapped Iterator in turn until all wrapped Iterators are exhausted.