Date: 2017-07-05
Java 9 introduced convenient factory methods for creating immutable collections (List, Set, Map). Prior to Java 9, creating immutable collections required more verbose code. These new methods, like List.of(), Set.of(), and Map.of()...