Class JoinedIterable<T>

  • All Implemented Interfaces:
    Iterable<T>

    public class JoinedIterable<T>
    extends Object
    implements Iterable<T>
    A JoinedIterable is an Iterable that wraps a number of Iterables. This class makes multiple iterables look like one to the caller. When any method from the Iterator interface is called on the Iterator object returned by iterator(), the JoinedIterable will delegate to a single underlying Iterator. The JoinedIterable will invoke the iterator on each Iterable, in sequence, until all Iterators are exhausted.