How do I use Enumeration to iterate through a collection?
Created May 3, 2012
John Zukowski
Enumeration enum = ...; while (enum.hasMoreElements()) { Object element = iterator.nextElement(); // process element }