SyntaxFix
Write A Post
Hire A Developer
Questions
I suppose your dictMap is of type HashMap, which makes it default to HashMap<Object, Object>. If you want it to be more specific, declare it as HashMap<String, ArrayList>, or even better, as HashMap<String, ArrayList<T>>
HashMap
HashMap<Object, Object>
HashMap<String, ArrayList>
HashMap<String, ArrayList<T>>