hashmap declarar e inicializar com valores em 1 linha java


Java:
new HashMap<String, String>() {{ put("Key", "Value"); }};
Wicked Wolf