Archive for August, 2009

Iterate over a Map using Java 5 generics

Sunday, August 2nd, 2009

One of the coolest features in Java 5 is the enhanced for loop. Instead of having to use clunky Iterators to loop through a Map, you can use the enhanced for loop just as though you were iterating over an array, a List, or other collection. (more…)