apache-commons-map-utils
Apache Commons Collections MapUtils 1. Introduction MapUtils is one of the tools available in the Apache Commons Collections project. Simply put, it provides utility methods and decorators to work with java.util.Map and java.util.SortedMap instances. 2. Setup Let’s start by adding the dependency: <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.1</version> </dependency> 3. Utility Methods… Continue Reading apache-commons-map-utils