I've been finding several bugs in my project that are due to enums being null, instead of one of the enumerated values. Is there a way to guarantee that a variable of this type will always be initialized with one of the enumerated values, and never be null?
|
No. Enums are always reference types, and
and if you have an instance or static variable which isn't initialized explicitly, it will always default to null. |
|||
|
|
|
This could probably be done (very, very painfully) by picking a Java Design By Contract system and changing every function that takes in an enum to require it not to be null. This is, of course, a gigantic amount of work to do on an existing project. On a more practical note, you might consider integrating a static code analysis tool into your build process. This is also a big amount of work (it will potentially find a giant set of "bugs"), but is probably doable (still painfully) if you have the time to invest in it. The right static code analysis tool can possibly detect this kind of error. |
|||
|
|