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

Is there a generic properties in Java?

Properties taks generic Hashmap inside, but itself seems is nongenric, is there generic properties?

share|improve this question
2  
In what circumstances would you need a generic Properties class? – Rahul Mar 26 '11 at 7:59
What would that do? Properties is a Map<String, String>, what would you want to parameterise? – Thilo Mar 26 '11 at 8:01
would that container be homogeneous ? – Dan Mar 26 '11 at 8:10
1  
its EntrySet method is coming from HashMap which returns Map<Object, Object>, I want something returned to be Map<String,String> – user496949 Mar 26 '11 at 8:11

2 Answers

up vote 2 down vote accepted

Not in the standard API. You would have to roll your own (which by the way is quite easy).

Still though, I'm not sure I see any use of it. If the class itself should be non-generic, i.e. have a non-generic interface, what does it matter if it's internal structure is generic or not?

share|improve this answer

its EntrySet method is coming from HashMap which returns Map, I want something returned to be Map

Yes, that is unwieldy. Since JDK1.6 there is at least a getStringPropertyNames, which returns a Set<String> (as opposed to the old Enumeration<?>).

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.