This short goes over a really easy way to create a Map of objects in Java by using the Map.of() static method. This method will go ahead and take in as many keys and values and return a Map data structure object. Similar to the List.of() and Set.of() methods, unfortunately, this method will return an immutable map, meaning you cannot modify the contents of the map (put/delete) once it's been created.
#shorts