Sorting a map <String, Object>
String value can be a Integer, Double or a normal (have to parse String into Integer)
[at a time, all keys will be one data type only]
keys cans be null
nullsLast(comparing(o -> Double.valueOf(o.getKey())));
is throwing NPE.
What to do to make it work?