is there some way of initializing a Java HashMap like this?:
Map<String,String> test = new HashMap<String, String>{"test":"test","test":"test"};
What would be the correct syntax? I have not found anything regarding this. Is this possible? I am looking for the shortest/fastet way to put some "final/static" values in a map that never change and are known in advance when crerating the Map.
Thanks very much! Jens