How can i put data in a HashMap where I don't want duplicate keys like string=a and string=A should be same.
eg:HashMap<String, Integer> map = new HashMap<String, Integer>();
map.put("A", 37);
map.put("a", 37);
I want both A and a should be considered same.