vote up 1 vote down star

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?

flag

70% accept rate
1  
Not answering your question but you may want to consider the “replace switch with polymorphism” refactoring. – CurtainDog May 15 at 12:38
1  
See stackoverflow.com/questions/859563/… for a better way than using switch. In short visitor pattern. – kts May 15 at 12:45
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 at 14:06

2 Answers

vote up 1 vote down

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|flag
Yes, but then I still got to write each one separately even though the completion speeds the process up. – Touko May 15 at 12:26
vote up 0 vote down

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|flag
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 at 12:25

Your Answer

Get an OpenID
or

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