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

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?

share|improve this question

2 Answers

up vote 4 down vote accepted

No. Enums are always reference types, and null is a valid value for any reference type. You can always write:

MyEnum x = null;

and if you have an instance or static variable which isn't initialized explicitly, it will always default to null.

share|improve this answer

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.

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.