Is there a smart way to get all Values from a Map given some Keys?
I would like a method like this:
public static <K, V> Collection<V> getAll(Map<K, V> map, Collection<K> keys)
or is already a guava way?
|
Is there a smart way to get all Values from a Map given some Keys? I would like a method like this:
or is already a guava way? |
||||
|
|
|
This depends on how you want the method to work. For example, should elements in For A, my preference would be:
This limits the result to values for keys that are actually in the map and should be relatively efficient as well, even if the map is much larger than the set of keys you want. Of course, you may want to copy that result in to another collection depending on what you want to do with it. For B, you'd use @Michael Brewer-Davis's solution except with For C, you'd first want to check that |
||||
|
|
I agree with skaffman's answer, just not with his conclusion (I think this is better than manual iteration). Here it is spelled out:
Also, here's a non-Guava version:
|
||||
|
|
You could, I suppose use Guava's |
|||
|
|
|
Using guava:
|
|||||
|