up vote 5 down vote favorite
share [g+] share [fb]

Is there a template or something for generating a switch statement for Java enum in Eclipse?

So that when I got an enum and I want to have a switch with all the values, I didn't have to write all it myself?

link|improve this question

70% accept rate
1  
Not answering your question but you may want to consider the “replace switch with polymorphism” refactoring. – CurtainDog May 15 '09 at 12:38
1  
See stackoverflow.com/questions/859563/… for a better way than using switch. In short visitor pattern. – KitsuneYMG May 15 '09 at 12:45
3  
As a note to the above two comments, there are plenty of situations where switch on an enum is valid. If the enum is being used as a "type code", polymorphism is likely a better option. If the enum represents states, then the link kts points out is useful (the answer in there is basically the GoF state pattern implemented in an enum) – Scott Stanchfield May 15 '09 at 14:06
feedback

3 Answers

up vote 7 down vote accepted

There certainly is, at least in 3.5.

Starting with something like this:

switch(a.getType()){

}

All you need to do is click on the switch keyword and hit CTRL+1. You should get a drop down which includes the option "Add missing case statements"

link|improve this answer
Also works with eclipse 3.4 – meriton Dec 28 '09 at 3:04
Nice, thanks. And in addition to this, using Ctrl-1 suggestions also with other cases than plain problems is a good thing to know. – Touko Dec 30 '09 at 11:02
+1. Note that if "Enum type constant not covered on 'switch'" is set to generate a warning/error, CTRL+1 on that line does not work. You have to select the switch keyword and then press CTRL+1. – Ionuț G. Stan Jul 19 '11 at 10:56
On OSX (at least for me), replace CTRL with Command. – Gabe Johnson Jan 5 at 18:28
feedback

The content assists in Eclipse 3.4 will help you write the code. Just type case and press Ctrl+Space and you'll get a list of unused enums.

link|improve this answer
Yes, but then I still got to write each one separately even though the completion speeds the process up. – Touko May 15 '09 at 12:26
feedback

Not that I know about. I think that you'd have to write it yourself.

I would be very surprised if you find this kind of template, because all the values in switch statement can do something totally different. I cannot see the way in which such template would work.

I know this answer is not helping much... sorry :)

link|improve this answer
OK, template is maybe not the place but there is bunch of useful code generation on Source menu (for getters & setters for example) and this could be similar.. – Touko May 15 '09 at 12:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.