I can declare an array of maps using generics to specify the map type:
private Map[] myMaps;
However, I can\'t figur
myMaps = new HashMap[10]();
So that's Wrong
Why not make a List of Maps instead of trying to make an array?
List> mymaps = new ArrayList>(count);