Is there something out there, maybe Guava, that could infer the key name of a HashMap from the either the classname or variable name of the key value? Like:
public Class MyBean {
//basic properties, getters, setters, etc.
}
MyBean myBean = new MyBean();
Map<String, Object> myHashMap = new HashMap<String, Object>();
myHashMap.put(myBean);
System.out.println(myHashMap.get("myBean"));
?as its value type... wildcards are for when your code is given something it doesn't control the creation of and you want to accept a range of unknown types. You also can't create such an object; the compiler doesn't let you. – ColinD Mar 23 '11 at 21:46