The list of tokens that can be used inside a SuppressWarnings annotation is:
all tosuppress all warnings
boxing tosuppress warnings relative toboxing/unboxing operations
cast tosuppress warnings relative tocast operations
dep-ann tosuppress warnings relative todeprecated annotation
deprecation tosuppress warnings relative todeprecation
fallthrough tosuppress warnings relative tomissing breaks in switch statements
finallytosuppress warnings relative tofinally block that don't return
hiding tosuppress warnings relative tolocals that hide variable
incomplete-switchtosuppress warnings relative tomissing entries in a switch statement (enumcase)
javadoc tosuppress warnings relative tojavadoc warnings
nls tosuppress warnings relative tonon-nls string literals
nulltosuppress warnings relative tonull analysis
rawtypes tosuppress warnings relative tousage of raw types
resource tosuppress warnings relative tousage of resources of type Closeable
restriction tosuppress warnings relative tousage of discouraged or forbidden references
serial tosuppress warnings relative tomissing serialVersionUID field for a serializable classstatic-access tosuppress warnings relative toincorrectstatic access
static-method tosuppress warnings relative tomethods that could be declared as staticsupertosuppress warnings relative tooverriding a method without super invocations
synthetic-access tosuppress warnings relative tounoptimized access from inner classes
sync-override tosuppress warnings because of missing synchronize when overriding a synchronized method
unchecked tosuppress warnings relative tounchecked operations
unqualified-field-access tosuppress warnings relative tofield access unqualified
unused tosuppress warnings relative tounused code and dead code