Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In Java 9, Map.of and Set.of were introduced. These are static factory methods which take values on the fly and return Unmodifiable mapsmap/sets set which contain those values. These unmodifiable map/set are immutable as they do not have a mutable map/set which can be accessed to modify the values within the map/set. 

Code Block
languagejava
themeConfluence
titleJava Map.of Example
Map<String, String> immutableMap = Map.of("A", "Apple", "B", "Ball", "C", "Car")

...