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

I don't understand why you would need java Collections singletonMap? Is it useful in multithreaded applications?

share|improve this question
1  
@skaffman: That would be my bad. At first I thought the OP was referring to the Commons class SingletonMap so I edited it. I've since rolled back my changes ;) – tskuzzy Aug 19 '11 at 18:08

3 Answers

up vote 10 down vote accepted

Basically, it allows you to do this:

callAPIThatTakesAMap(Collections.singletonMap(key, value));

rather than this:

Map<KeyType, ValueType> m = new HashMap<KeyType, ValueType>();
m.put(key, value);
callAPIThatTakesAMap(m);

which is much nicer when you only have a single key/value pair. This situation probably does not arise very often, but singleton() and singletonList() can quite frequently be useful.

share|improve this answer
3  
I use singletonMap all the time in DAO's that use Spring's Named Parameter JDBC Template. If you have a simple select statement like "select foo from bar where id = :barId" then you would need a parameter map with a single key-value pair, barId=123. That's a great place to use singletonMap(). – spaaarky21 Sep 17 '12 at 17:33

It is useful if you need to pass a map to some general code (as a parameter, or as a result from a method) and you know that in this particular case -- but perhaps not in other cases that pass map to the same general code -- the map you want to pass has only a single key. In that case, the SingletonMap is more efficient than a full-blown map implementation, and also more convenient for the programmer because everything you need to say can be said in the constructor.

share|improve this answer
nice explanation – Peter Perháč Aug 19 '11 at 18:06

It's mainly for convenience and abstraction. Some APIs take a Collection as an argument and it's nice to have a simple way to convert objects to a Set or Map.

singletonMap() and singletonList() were actually introduced after singletonSet() in Java 1.3 because singletonSet() proved to be useful.

share|improve this answer
There is no singletonSet() method, it's just called singleton() – Michael Borgwardt Aug 19 '11 at 18:13

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.