When I try to declare a Dictionary as such:
private Dictionary map;
The compiler gives me the following error:
To expand on TofuBeer's answer.
int is a primitive
Integer is an Object.
Generics does not support primitives.