Say I have a Map extends Object, List>
Map extends Object, List>
I can get the values of the map easily enough, and iterate over it to produce a single
If you are using Java 8, you could do something like this:
someMap.values().forEach(someList::addAll);