Given a map such as:
Map<String, Integer> = new Hashmap<String, Integer>;
How can I get a Collection<Integer> (any implementation of Collection would do) of the entrySet? Doing .entrySet() doesn't seem to work.
|
Given a map such as:
How can I get a |
|||
|
|
|
you want to get just the values, via the I say that because you mention you wanted a collection of the value type, being
|
|||||||
|
|
That depends on if you truly want a SET. If you want a true Set you must do:
Notice that values gives a Collection which can have duplicate entries. |
|||
|
|