Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 7 down vote accepted

you want to get just the values, via the values() method. Docs here.

I say that because you mention you wanted a collection of the value type, being Integer in this case.

entrySet returns a collection of Map.Entry, each instance of which contains both the key and value that make up the entry, so if you want both the key and value, use entrySet() like so

Set<Map.Entry<String, Integer>> entries = map.entrySet()

share|improve this answer
Set actually doesn't have any methods that aren't on Collection, interestingly enough. It just has different semantics. – ColinD Sep 19 '11 at 21:37
@colind, thanx, don't know how my wires got crossed there. – hvgotcodes Sep 19 '11 at 21:40
@ColinD, ooo and my example for entrySet was completely wrong, fixed.. – hvgotcodes Sep 19 '11 at 22:25

That depends on if you truly want a SET. If you want a true Set you must do:

Set mySet = new HashSet(map.values());

Notice that values gives a Collection which can have duplicate entries.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.