I wonder why the Collection.addAll() method only accepts other Collections but not Iterables. Why is that?
Any similar method to do that for Iterables?
|
Presumably because the |
||||
|
|
When in doubt, always check Guava (or Commons):
|
|||||||
|
|
There are quite a few things in the core JDK which don't work as well with plain Iterables as they might. I'd recommend using Guava to overcome a lot of these shortcomings. |
|||
|
|
|
Basically because an iterable may never en ( that is, getNext() return true forever ) Also, to keep congruency, you may think a Collection may add all the elements of another collection, but, an iterable is not necesarily a collection ( it may be anything, like the a ResultSet wrapper for instance ) |
|||||||||||||
|
|
Because not all E.g.
How would collections interpret it? It wouldn't return a collection of it's parameterized type (of the collection). |
||||
|
|
yourCollection.addAll(org.apache.commons.collections.IteratorUtils.toList(yourIterable.iterator()))– mihi Sep 30 '10 at 15:30java.util.Arrays.asList()– mihi Sep 30 '10 at 15:32Iterable– Steve Kuo Sep 30 '10 at 21:16