I have a hashmap of the following type
HashMap> map=new HashMap>(); <
HashMap> map=new HashMap>();
for (Map.Entry> entry : map.entrySet()) { System.out.println( entry.getKey()); System.out.println( entry.getValue());//Returns the list of values }