I have a case in which I need to store huge numbers into key and value. I tried:
HashMap<String, double> map = new HashMap<String, double>();
map.put("Type1", 1267650600228229401496703205376);
I get syntax error. Is there a way to store key and value with huge number?