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?
|
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? |
|||||||||||||
|
|
There certainly is, at least in 3.5. Starting with something like this:
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" |
|||||||||||
|
|
You might want to try out the fast code eclpse plugin http://3pintech.com/products.htm. http://3pintech.com/products/fast-code/templates.htm#createswitchcaseenum has a details of how you can generate the switch/case statements using the Enum. Unlike eclipse, with this plugin you can select the specific Enum, for which you want to generated the statement. One can also generate if-elseif statements with this plugin. |
||||
|
|
|
The content assists in Eclipse 3.4 will help you write the code. Just type |
|||||||
|
|
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 :) |
|||
|