I need to create a static Map which maps a given String to an array of int\'s.
Map
String
int
In other words, I\'d like to define something l
static Map map = new HashMap<>();
The map is static, you can access it without creating an instance of the class it's defined in. I don't know what you mean with having the keys and values static as well, because it makes no sense to me.