What is the list of valid @SuppressWarnings warning names in Java?
The bit that come between the ("") in @SuppressWarnings("").
|
4
|
What is the list of valid @SuppressWarnings warning names in Java? The bit that come between the ("") in @SuppressWarnings("").
|
||||||
|
|
|
It depends on your IDE or compiler. Here is a list for Eclipse:
Others will be similar but vary. |
||
|
|
|
|
All values are permitted (unrecognized ones are ignored). The list of recognized ones is compiler specific. 'unchecked' and 'deprecation' are required by the Java Language Specification, and so should be valid with all compilers. For Sun's compiler, running 'javac -X' gives a list of all values recognized by that version. For 1.5.0_17, the list appears to be:
|
||||
|
|
|
The list is compiler specific. But here are the values supported in Eclipse:
Sun JDK (1.6) has a shorter list of supported warnings:
The latest available javac (1.6.0_13) for mac have the following supported warnings
|
||||||||||
|