I have a map in which I want some values to be come on top.
HashMap<String,String> hm = new HashMap<String,String>();
hm.put("Phone Number","998291829");
hm.put("Address","12 A Street");
hm.put("Name","Robert Singh");
hm.put("Email","robert@gmail.com");
-
-
I want Name and email as first and second entry,How can I do this.