Map<String, Integer> hashMap = new HashMap<String, Integer>();
hashMap.put("Test", 123);
hashMap.put("Test1", 1234);
hashMap.put("Test2", 1234);
hashMap.put("Test3", 123);
for(Entry<String, Integer> entry : hashMap.entrySet()) {
if(entry.getValue() == 123) {
System.out.println(entry.getKey());
}
}