Is to possible to create a list of guava Multimap?
I created a regular Multimap as so, but was not able to create as list of Multimaps
Multimap<String, Integer> map = ArrayListMultimap.create();
Is to possible to create a list of guava Multimap?
I created a regular Multimap as so, but was not able to create as list of Multimaps
Multimap<String, Integer> map = ArrayListMultimap.create();
Copyright © 2021 Jogjafile Inc.
You already have initialized the
MultiMap
precisely using:Now if you tend to implement a
java.util.List
of such a MultiMap, you can simply initialise it as: