import java.util.HashMap;
import java.util.Map;
publicclass Main {
publicstaticvoid main(String[] argv) throws Exception {
Map map = new HashMap();
// Create int wrapper object
Integer refInt = newInteger(123);
// Store int in map
map.put("key", refInt);
// Get int value from map
refInt = (Integer) map.get("key");
// Get the integer value from wrapper object
int i = refInt.intValue();
}
}