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 took take values on the fly and returned return Unmodifiable maps/sets which contained contain those values. 

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

...