Eclipse: Java Enum auto-completion of switch case

后端 未结 3 1740
遥遥无期
遥遥无期 2021-01-30 16:03

Is there a CTRL+space -like way of \"auto-constructing\" a switch case around a given Java Enum in Eclipse? I\'d like a stub with all Enum cases...

3条回答
  •  忘掉有多难
    2021-01-30 16:45

    It has been in Eclipse for ages. It's admittedly only a bit hard to find. First start with

    switch (myEnum) {
    
    }
    

    At that point, your cursor would usually be inside the statement block {}. You need to put your cusror back to the line with the switch keyword and press Ctrl+1 and choose Add missing case statements. This way it will insert any possible case.

    alt text

    You'd intuitively expect this option to be available inside the statement block {} as well, but no.


    Update: since Eclipse Kepler (or perhaps already Juno, but it's so instable that I never really used it), this option is finally available via Ctrl+1 inside the statement block as well.

    enter image description here

提交回复
热议问题