If you need to keep track of multiple values, you could possibly use a List value in the Map. You could use the assumption that the last value in the List is the most recent value, if that meets your requirements.
Creating such a map would be done like this (though your key and value types don't have to be Strings, they could be whatever classes you're using):
Map<String, List<String>> map = new HashMap<String, List<String>>();
Then to get the latest value for a given key, you'd need to get the last element of the corresponding list:
List<String> list = map.get(key);
String value = null;
if (list != null) {
value = list.get(list.size() - 1);
}
To add a value to the Map, you'd need to add logic to create a new list if no value exists for a new key, otherwise add the new value to the end of the list:
if (map.get(key) == null) {
List<String> list = new ArrayList<String>();
list.add(value);
map.put(key, list);
}
else {
map.get(key).add(value);
}