public abstract class DelegatingIterable<E>extends Object
implements Iterable<E>
An abstract Iterable which delegates all method calls to another given Iterable.
This class is abstract and is meant to be a convenient way of composing Iterables despite the lack of native support for the decoration pattern in
Java.