I have a HashMap:
HashMap
private HashMap example = new HashMap();
Now I would lik
map.forEach((key, value) -> System.out.println(key + " " + value));
Using java 8 features