I've seen in lots and lots of Java libraries the use of lots of constants where enums could have easily been used. Even in Swing, there is a lot of code that uses constants instead of enums. Why?
What are the disadvantages to using enums?
|
|
I find I still telling people to use enum for a Singleton even though it has been around for 7 years now. :P When would use use constants instead of enum? When you have many associated but not directly related constants.
|
|||||
|
|
Because enums were introduced in Java 5, and those libraries have been written long before. Refactoring them would break a bazillion of existing applications. |
|||
|
|
Enums in java are introduced in Java 5, these were not there before and Enum is equivalent to a class in java. |
|||
|
|
|
Prior to Java 1.5, there was no |
|||
|
|