I'm not able to navigate down to the HashSets in my datastructure
I declared an array of Map[] and populated it with HashMap with K of Integer, and V of HashSet of String but was unable to add items to the HashSet.
I've trimmed the code down to illustrate ...
private Map[] myMaps = null;
myMaps = new Map[numRepeats];
myMaps[0] = new HashMap<Integer,HashSet<String>>();
myMaps[0].put(0, new HashSet<String>());
The popup in NetBeans shows I can get to java.util.Map with
myMaps[0].
but using the map.get(0) method I thought would return the HashSet
myMaps[0].get(0).
shows I've got to generic java.lang.object, not to the HashSet. Since I need to use the HashSet.add() method next this means I'm stuck. I would appreciate suggestions.
Thank you