Iterator<Entry<String, HashMap<String, List<String>>>>
iter=cellLinesList.entrySet().iterator();
while(iter.hasNext()){
Entry en=iter.next();
System.out.println("The bay is ................"+en.getKey());
HashMap<String,List<String>> rowList=(HashMap<String, List<String>>) en.getValue();
Iterator<Entry<String, List<String>>> rowIter=rowList.entrySet().iterator();
while(rowIter.hasNext()){
Entry rowEn=rowIter.next();
System.out.println("The row is ..................."+rowEn.getKey());
List<String> cellsList=(List<String>) rowEn.getValue();
for(String s:cellsList){
System.out.println(s);
}
}
}
Here I am unable to iterator this type of the Hashmap,Please help me
Thanks in advance