Supported @SuppressWarnings Values in Android Studio

android, android-studio, intellij-idea, java

Solution

Press Alt+Enter (Windows, Linux) or Option+Enter (OS X), then either press → or click on the arrow pointing right at the end of "Replace with lambda...", finally select some of the Suppress... menu items available.

Problem

What are all of the supported values for `@SuppressWarnings` in Android Studio? I couldn't find any documentation on it, and I know it isn't the same as Eclipse because "null" doesn't work. You can catch null warnings with "all", but as you can imagine I'd rather not.

Original source