Iterate through the values of LinkedHashMap in Java
Description
The following code shows how to iterate through the values of LinkedHashMap.
Example
/* w ww .j a v a 2 s.com*/
import java.util.Collection;
import java.util.Iterator;
import java.util.LinkedHashMap;
public class Main {
public static void main(String[] args) {
LinkedHashMap<String,String> lHashMap = new LinkedHashMap<String,String>();
lHashMap.put("1", "One");
lHashMap.put("2", "Two");
lHashMap.put("3", "java2s.com");
Collection c = lHashMap.values();
Iterator itr = c.iterator();
while (itr.hasNext()){
System.out.println(itr.next());
}
}
}
The code above generates the following result.