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
