< prev index next >

src/jdk.compiler/share/classes/com/sun/tools/javac/code/Lint.java

Print this page




 194          * Warn about empty statement after if.
 195          */
 196         EMPTY("empty"),
 197 
 198         /**
 199          * Warn about issues regarding module exports.
 200          */
 201         EXPORTS("exports"),
 202 
 203         /**
 204          * Warn about falling through from one case of a switch statement to the next.
 205          */
 206         FALLTHROUGH("fallthrough"),
 207 
 208         /**
 209          * Warn about finally clauses that do not terminate normally.
 210          */
 211         FINALLY("finally"),
 212 
 213         /**





 214          * Warn about module system related issues.
 215          */
 216         MODULE("module"),
 217 
 218         /**
 219          * Warn about issues regarding module opens.
 220          */
 221         OPENS("opens"),
 222 
 223         /**
 224          * Warn about issues relating to use of command line options
 225          */
 226         OPTIONS("options"),
 227 
 228         /**
 229          * Warn about issues regarding method overloads.
 230          */
 231         OVERLOADS("overloads"),
 232 
 233         /**




 194          * Warn about empty statement after if.
 195          */
 196         EMPTY("empty"),
 197 
 198         /**
 199          * Warn about issues regarding module exports.
 200          */
 201         EXPORTS("exports"),
 202 
 203         /**
 204          * Warn about falling through from one case of a switch statement to the next.
 205          */
 206         FALLTHROUGH("fallthrough"),
 207 
 208         /**
 209          * Warn about finally clauses that do not terminate normally.
 210          */
 211         FINALLY("finally"),
 212 
 213         /**
 214           * Warn about compiler generation of a default constructor.
 215           */
 216         MISSING_DECLARED_CTOR("missing-declared-ctor"),
 217 
 218         /**
 219          * Warn about module system related issues.
 220          */
 221         MODULE("module"),
 222 
 223         /**
 224          * Warn about issues regarding module opens.
 225          */
 226         OPENS("opens"),
 227 
 228         /**
 229          * Warn about issues relating to use of command line options
 230          */
 231         OPTIONS("options"),
 232 
 233         /**
 234          * Warn about issues regarding method overloads.
 235          */
 236         OVERLOADS("overloads"),
 237 
 238         /**


< prev index next >