I have an Enumeration object and I want to create a Collection object containing the items of the enumeration.
开发者_运维知识库Is there any Java function to do this without manually iterating over the enumeration? Something like the reverse of the Collections.enumeration
method?
In fact, there is Collections.list(enumeration)
(There is also EnumerationUtils.toList(enumeration)
from commons-collections.)
There's nothing in the standard API, because Enumerations and Iterators are not considered first-class API entities as in the C++ STL. You're supposed to consume them immediately after creation (ideally implicitly via the "enhanced for loop").
Collections.list()
精彩评论