I was wondering is it posible to change the Type of a HashMap?
Becasue lets say I have used an Api (Apache POI) to create a HashMap.
Map<Cell, XSSFCell> mapFile1 = new LinkedHashMap<Cell, XSSFCell>();
But later on in the program I work with a lot of strings, and I would like to be able to look a string up in the HashMap.
Is there a way to make the same HashMap:
Map<String, String> mapFile1 = new LinkedHashMap<String, String>();