How to iterate through google multimap
Google Collections (now Guava) is a Java 1.5 library… even ignoring the lack of generics in Java 1.4, it likely uses things that were added in 1.5, making it incompatible. That said, there are various ways to iterate through a Multimap. By key, collection pairs in Java8: multimap.asMap().forEach((key, collection) -> {…}); Iterate through all values: … Read more