show/hide this revision's text 2 added 289 characters in body

Using an HashMap no

The question confused me at first but @Matt cleared it up for me.But if you use

Consider using the entrySet() method that returns a LinkedHashMapset with the iteration order is key-value pairs on the same as insertion orderMap.

Map<Integer, Integer> a = new HashMap<Integer, Integer>(2);
a.put(1, 2);
a.put(2, 3);
for (Map.Entry<Integer, Integer> entry : a.entrySet()) {
    System.out.println(entry.getKey() + " => " + entry.getValue());
}

This outputs:

1 => 2
2 => 3
3 => 3
show/hide this revision's text 1

Using an HashMap no. But if you use a LinkedHashMap the iteration order is the same as insertion order.