Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Spring to bind user input into a command object. Unfortunately it does not seem to support EnumSets (giving an Exception "Could not instantiate Collection type: java.util.EnumSet"), so I am thinking about creating a utility that provides a "view" for any Set as a Map.

I am just wondering is anyone aware of anything that already does this either in Spring or in Commons Lang/Collections/etc ?

share|improve this question
How do you instantiate the EnumSet? – Puce Oct 11 '12 at 11:58
@Puce Normally you'd have to call one of the static factory methods, but what Spring is trying to do is to instantiate an instance via reflection in order to do some internal manipulation. – billc.cn Oct 11 '12 at 12:42
Again, please show us the relevant code/ Spring configuration, which results in the exception you mentioned. – Puce Oct 11 '12 at 16:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.