T
- type of objects provided by underlying iteratorspublic class ConcatenatedIterable<T> extends Object implements Iterable<T>
Constructor and Description |
---|
ConcatenatedIterable(Collection<? extends Iterable<T>> iterables)
Construct with
Iterable s. |
ConcatenatedIterable(Iterable<T>... iterables)
Construct with
Iterable s. |
ConcatenatedIterable(Iterator<T>... iterables)
Construct with
Iterator s. |
Modifier and Type | Method and Description |
---|---|
Iterator<T> |
iterator() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
@SafeVarargs public ConcatenatedIterable(Iterable<T>... iterables)
Iterable
s.iterables
- public ConcatenatedIterable(Collection<? extends Iterable<T>> iterables)
Iterable
s.iterables
- @SafeVarargs public ConcatenatedIterable(Iterator<T>... iterables)
Iterator
s.iterables
-