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
You can also use: ImmutableMap.of(key, val)
ImmutableMap.of(key, val)
https://guava.dev/releases/23.0/api/docs/com/google/common/collect/ImmutableMap.html#of--