Is there a template or something for generating a switch statement for Java enum in Eclipse? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T18:41:41Zhttp://stackoverflow.com/feeds/question/868261http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/868261/is-there-a-template-or-something-for-generating-a-switch-statement-for-java-enum1Is there a template or something for generating a switch statement for Java enum in Eclipse?Touko2009-05-15T11:58:51Z2009-05-15T12:15:05Z
<p>Is there a template or something for generating a switch statement for Java enum in Eclipse?</p>
<p>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?</p>
http://stackoverflow.com/questions/868261/is-there-a-template-or-something-for-generating-a-switch-statement-for-java-enum/868300#8683000Answer by Artur for Is there a template or something for generating a switch statement for Java enum in Eclipse?Artur2009-05-15T12:07:59Z2009-05-15T12:07:59Z<p>Not that I know about. I think that you'd have to write it yourself.</p>
<p>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.</p>
<p>I know this answer is not helping much... sorry :)</p>
http://stackoverflow.com/questions/868261/is-there-a-template-or-something-for-generating-a-switch-statement-for-java-enum/868338#8683381Answer by Aaron Digulla for Is there a template or something for generating a switch statement for Java enum in Eclipse?Aaron Digulla2009-05-15T12:15:05Z2009-05-15T12:15:05Z<p>The content assists in Eclipse 3.4 will help you write the code. Just type <code>case </code> and press Ctrl+Space and you'll get a list of unused enums.</p>