Live Template fore Intellij IDEA for Iterating through Map
To view a list of live template available: Ctrl + J
and then Tab.
From there you will have list of live template, iter (for each loop) will be on the list.
It is easier if you just type iter
and then Tab.
You will get a drop-down and there you can choose map.entrySet()
and it will give you:
for (Map.Entry<String, Object> stringObjectEntry : map.entrySet()) {
}