I have a map of constants, like this:
private static Map<String, Character> _typesMap =
new HashMap<String, Character>() {
{
put ("string", 'S');
put ("normalizedString", 'N');
put ("token", 'T');
// (...)
}
Do I really need to use Collections.unmodifiableMap() to create this map? What is the advantage of using it? Are there any disadvantages of not using it, besides the obvious fact that they are not really becoming constant?
finaleither? – Tom Hawtin - tackline Oct 22 '10 at 17:01finalis necessary. (Unless_typesMapis reset to a different map later...) – java.is.for.desktop Nov 28 '10 at 12:13