Supported Values for @SuppressWarnings
http://jinchun1223.javaeye.com/blog/454140
http://www.breakitdownblog.com/supported-values-for-suppresswarnings/
Update #1: All these annotations are still valid in Eclipse 3.4 and 3.5, there have been no new SuppressWarning arguments added in those versions of the JDT compiler.
If you are a Java developer and use the new @SuppressWarnings annotation in your code from time-to-time to suppress compiler warnings you, like me, have wondered probably about a million times already just exactly what are the supported values that can be used with this annotation.
The reason the list isn’t easy to find is because it’s compiler specific, which means Sun may have a different set of supported values than say IBM, GCJ or Apache Harmony.
Fortunately for us, the Eclipse folks have documented the values they support (As of Eclipse 3.3), here they are for reference:
* all to suppress all warnings
* boxing to suppress warnings relative to boxing/unboxing operations
* cast to suppress warnings relative to cast operations
* dep-ann to suppress warnings relative to deprecated annotation
* deprecation to suppress warnings relative to deprecation
* fallthrough to suppress warnings relative to missing breaks in switch statements
* finally to suppress warnings relative to finally block that don’t return
* hiding to suppress warnings relative to locals that hide variable
* incomplete-switch to suppress warnings relative to missing entries in a switch statement (enum case)
* nls to suppress warnings relative to non-nls string literals
* null to suppress warnings relative to null analysis
* restriction to suppress warnings relative to usage of discouraged or forbidden references
* serial to suppress warnings relative to missing serialVersionUID field for a serializable class
* static-access to suppress warnings relative to incorrect static access
* synthetic-access to suppress warnings relative to unoptimized access from inner classes
* unchecked to suppress warnings relative to unchecked operations
* unqualified-field-access to suppress warnings relative to field access unqualified
* unused to suppress warnings relative to unused code
TIP: For the folks that haven’t used @SuppressWarnings before, the syntax looks like this:
@SuppressWarnings(”unused”)
and can be placed above almost any piece of code that is causing a compiler warning to popup for your class.
How to use @SuppressWarnings
Sometimes you will got the warning in Java when you are using the eclipse.
And this is kind of annoying. Now you can use this to eliminate it:
@SuppressWarnings(option)
This can be categorized into two categories:
- Put this notation right before the code with warning:
-
- @SuppressWarnings("unused") String unused = "never";
- Put this notation right before the class declaration
-
- @SuppressWarnings("deprecation
")
- class DeprecationExample{ ... }
I think the warning options in red should be categoried into category 2.
You can simply try this out!
Warning options
-warn:
allDeprecation
allJavadoc assertIdentifier
boxing charConcat
conditionAssign constructorName
dep-ann deprecation
discouraged
emptyBlock
enumSwitch
fallthrough
fieldHiding
finalBound finally
forbidden
hiding
incomplete-switch
indirectStatic intfAnnotation
intfNonInherited
javadoc
localHiding maskedCatchBlocks
nls noEffectAssign
null
over-ann
paramAssign pkgDefaultMethod
raw
semicolon serial
specialParamHiding
static-access staticReceiver
suppress
synthetic-access
syntheticAccess
tasks(<task1>|...|<taskN>) typeHiding
unchecked
unnecessaryElse
unqualified-field-access
unqualifiedField
unused
unusedArgument unusedImport
unusedLabel
unusedLocal
unusedPrivate
unusedThrown
uselessTypeCheck varargsCast
warningToken
|
Set warning level.
e.g. -warn:unusedLocal,deprecation
In red
are the default settings.
-warn:none disable all warnings -warn:<warnings separated by ,> enable exactly the listed warnings -warn:+<warnings separated by ,> enable additional warnings -warn:-<warnings separated by ,> disable specific warnings
allDeprecation
deprecation even inside deprecated code |
allJavadoc
invalid or missing javadoc |
assertIdentifier
occurrence of assert
used as identifier |
boxing
autoboxing conversion |
charConcat
when a char array is used in a string concatenation without being
converted explicitly to a string |
conditionAssign
possible accidental boolean assignment |
constructorName
method with constructor name |
dep-ann
missing @Deprecated annotation |
deprecation
usage of deprecated type or member outside deprecated
code |
discouraged
use of types matching a discouraged access rule |
emptyBlock
undocumented empty block |
enumSwitch,
incomplete-switch
incomplete enum switch |
fallthrough
possible fall-through case |
fieldHiding
field hiding another variable |
finalBound
type parameter with final bound |
finally
finally block not completing normally |
forbidden
use of types matching a forbidden access rule |
hiding
macro for fieldHiding, localHiding, typeHiding and
maskedCatchBlock |
indirectStatic
indirect reference to static member |
intfAnnotation
annotation type used as super interface |
intfNonInherited
interface non-inherited method compatibility |
javadoc
invalid javadoc |
localHiding
local variable hiding another variable |
maskedCatchBlocks
hidden catch block |
nls
non-nls string literals (lacking of tags //$NON-NLS-<n>) |
noEffectAssign
assignment with no effect |
null
missing or redundant null check |
over-ann
missing @Override annotation |
paramAssign
assignment to a parameter |
pkgDefaultMethod
attempt to override package-default method |
raw
usage a of raw type (instead of a parametrized type) |
semicolon
unnecessary semicolon or empty statement |
serial
missing serialVersionUID |
specialParamHiding
constructor or setter parameter hiding another field |
static-access
macro for indirectStatic and staticReceiver |
staticReceiver
if a non static receiver is used to get a static field or call a
static method |
suppress
enable @SuppressWarnings |
syntheticAccess,
synthetic-access
when performing synthetic access for innerclass |
tasks
enable support for tasks tags in source code |
typeHiding
type parameter hiding another type |
unchecked
unchecked type operation |
unnecessaryElse
unnecessary else clause |
unqualified-field-access,
unqualifiedField
unqualified reference to field |
unused
macro for unusedArgument, unusedImport, unusedLabel, unusedLocal,
unusedPrivate and unusedThrown |
unusedArgument
unused method argument |
unusedImport
unused import reference |
unusedLabel
unused label |
unusedLocal
unused local variable |
unusedPrivate
unused private member declaration |
unusedThrown
unused declared thrown exception |
uselessTypeCheck
unnecessary cast/instanceof operation |
varargsCast
varargs argument need explicit cast |
warningToken
unhandled warning token in
@SuppressWarnings |
|
分享到:
相关推荐
How to use SFTP (with client validation - public key authentication) The topic How to use SFTP (with client validation - password authentication) discusses the simplest form of client ...
Arrays Intermediate This sample shows how to use TROArray for presentating DB tables in a master/detail relationship. Async Introduction This sample shows how to call methods on a RemObjects SDK ...
The avatar-demo scenes show how to utilize Kinect-controlled avatars in your scenes, gesture-demos – how to use the programmatic or VGB gestures, fitting room demos – how to create your own dressing...
JAVA连接hive/hbase/sparksql/hdfs,kerbers认证失败 报no supported default etypes for default_tkt_enctypes ,需要更新jdk8的安全jar包,用来处理keytab文件,可以在oracle官网下,但是要注册账号,也可以下我的...
• What is and how to use the Object Definition Syntax supported in JSON • What comprises a JSON content production workflow • What are the concepts and principles behind the JSON Object ...
Supported Configurations for Oracle WebLogic Server 10.3
Y-axis with auto ranging, minor & major value indication along Y-axis, multiple Y-axis values for different series supported Support for annotations & legend Panes with scrolling, scaling, splitter,...
Concepts in the book are supported with use cases, and emphasis is put on the reality that most of you are implementing in a “brownfield” environment in which you must implement microservices ...
Describes and compares wireless communication technologies and how to use them even if they are not directly supported by the .NET Micro Framework Describes the whole class library and features of ...
RAMdisk driver for use when resizing or other features are not needed UIDE is a DOS "Universal IDE" caching driver It intercepts "Int 13h" BIOS I O requests and caches data ...
What you'll learn Key Spring Framework fundamentals How to use the ...supported View Types How to customize your website What isand how to use the Spring Web Flow framework How to test your Spring MVC ...
Then, you will see how to use several APIs for vision and integrate OpenCV. Finally, the installation and usage of a visual odometry software is described. Chapter 10, Point Clouds, shows how to use ...
This book brings together dozens of proven patterns for creating use cases that more accurately reflect real requirements, are easier to translate into working systems, and are simpler to maintain....
As it relates to finance, this is the most exciting time to adopt a disruptive technology that will transform how everyone invests for generations. Readers will learn how to structure Big data in a ...