Is there a template or something for generating a switch statement for Java enum in Eclipse? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T18:41:41Z http://stackoverflow.com/feeds/question/868261 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/868261/is-there-a-template-or-something-for-generating-a-switch-statement-for-java-enum 1 Is there a template or something for generating a switch statement for Java enum in Eclipse? Touko 2009-05-15T11:58:51Z 2009-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#868300 0 Answer by Artur for Is there a template or something for generating a switch statement for Java enum in Eclipse? Artur 2009-05-15T12:07:59Z 2009-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#868338 1 Answer by Aaron Digulla for Is there a template or something for generating a switch statement for Java enum in Eclipse? Aaron Digulla 2009-05-15T12:15:05Z 2009-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>