I noticed that //noinspection
can be auto-generated in IntelliJ
@SuppressWarninigs
before the statement//noinspection
by hitting Alt+Enter when you have the warning selected and then use the right arrow key to see the Suppress for ... optionEnded up here when I wanted to suppress a "switch has too few case labels" warning from IntelliJ. I did not find a complete List for IntelliJ's @SuppressWarning
support but //noinspection
did the trick for me.