Generics Java Tutorial

import java.util.HashMap;
import java.util.Map;
public class MainClass {
    public static void main (String[] args) {
        Map map = new HashMap();
        map.put ("key1", "value1");
        map.put ("key2", "value2");
        String value1 = map.get("key1");
    }
}