Is there a generic properties in Java?
Properties taks generic Hashmap inside, but itself seems is nongenric, is there generic properties?
|
Is there a generic properties in Java? Properties taks generic Hashmap inside, but itself seems is nongenric, is there generic properties? |
|||||||||||||
|
|
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? |
|||
|
|
Yes, that is unwieldy. Since JDK1.6 there is at least a |
|||
|
|