< prev index next >

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

Print this page

267          * <p>
268          * This category is not supported by {@code @SuppressWarnings}.
269          */
270         INCUBATING("incubating", false),
271 
272         /**
273           * Warn about compiler possible lossy conversions.
274           */
275         LOSSY_CONVERSIONS("lossy-conversions"),
276 
277         /**
278           * Warn about compiler generation of a default constructor.
279           */
280         MISSING_EXPLICIT_CTOR("missing-explicit-ctor"),
281 
282         /**
283          * Warn about module system related issues.
284          */
285         MODULE("module"),
286 





287         /**
288          * Warn about issues regarding module opens.
289          */
290         OPENS("opens"),
291 
292         /**
293          * Warn about issues relating to use of command line options.
294          *
295          * <p>
296          * This category is not supported by {@code @SuppressWarnings}.
297          */
298         OPTIONS("options", false),
299 
300         /**
301          * Warn when any output file is written to more than once.
302          *
303          * <p>
304          * This category is not supported by {@code @SuppressWarnings}.
305          */
306         OUTPUT_FILE_CLASH("output-file-clash", false),

267          * <p>
268          * This category is not supported by {@code @SuppressWarnings}.
269          */
270         INCUBATING("incubating", false),
271 
272         /**
273           * Warn about compiler possible lossy conversions.
274           */
275         LOSSY_CONVERSIONS("lossy-conversions"),
276 
277         /**
278           * Warn about compiler generation of a default constructor.
279           */
280         MISSING_EXPLICIT_CTOR("missing-explicit-ctor"),
281 
282         /**
283          * Warn about module system related issues.
284          */
285         MODULE("module"),
286 
287         /**
288          * Warn about issues related to migration of JDK classes.
289          */
290         MIGRATION("migration"),
291 
292         /**
293          * Warn about issues regarding module opens.
294          */
295         OPENS("opens"),
296 
297         /**
298          * Warn about issues relating to use of command line options.
299          *
300          * <p>
301          * This category is not supported by {@code @SuppressWarnings}.
302          */
303         OPTIONS("options", false),
304 
305         /**
306          * Warn when any output file is written to more than once.
307          *
308          * <p>
309          * This category is not supported by {@code @SuppressWarnings}.
310          */
311         OUTPUT_FILE_CLASH("output-file-clash", false),
< prev index next >