[Solved] Getters and Setters for HashMaps [closed]


If you’re just trying to get objects in and out:

map.put(key, value);
value = map.get(key);

Pardon me if i’m not interperating your questin correctly.

solved Getters and Setters for HashMaps [closed]