Immutable Map Implementations in Java 1. Overview It is sometimes preferable to disallow modifications to the java.util.Map such as sharing read-only data across threads. For this purpose, we can use either an Unmodifiable Map or an Immutable Map. In this quick tutorial, we’ll see what’s the difference between them. Then, we’ll present… Continue Reading java-immutable-maps