I have this MultiHashMap:
Map<String, String> map= new MultiHashMap();
But now I can't seem to get the keys and values out of the HashMap.
map.getKey();
Then I get the error:
The method getKey() is undefined for the type Map<String,String>
So how do I get de values out of this HashMap then?