Mega Code Archive

 
Categories / Java Book / 005 Collection
 

0331 Get Enumeration from collection, create list from Enumeration

static<T> Enumeration<T> enumeration(Collection<T> c) Returns an enumeration over the specified collection. static<T> ArrayList<T> list(Enumeration<T> e) Returns an array list containing the elements returned by the specified enumeration in the order they are returned by the enumeration.