< prev index next >

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

Print this page

261         /**
262          * Warn about use of incubating modules.
263          */
264         INCUBATING("incubating"),
265 
266         /**
267           * Warn about compiler possible lossy conversions.
268           */
269         LOSSY_CONVERSIONS("lossy-conversions"),
270 
271         /**
272           * Warn about compiler generation of a default constructor.
273           */
274         MISSING_EXPLICIT_CTOR("missing-explicit-ctor"),
275 
276         /**
277          * Warn about module system related issues.
278          */
279         MODULE("module"),
280 





281         /**
282          * Warn about issues regarding module opens.
283          */
284         OPENS("opens"),
285 
286         /**
287          * Warn about issues relating to use of command line options
288          */
289         OPTIONS("options"),
290 
291         /**
292          * Warn when any output file is written to more than once.
293          */
294         OUTPUT_FILE_CLASH("output-file-clash"),
295 
296         /**
297          * Warn about issues regarding method overloads.
298          */
299         OVERLOADS("overloads"),
300 

261         /**
262          * Warn about use of incubating modules.
263          */
264         INCUBATING("incubating"),
265 
266         /**
267           * Warn about compiler possible lossy conversions.
268           */
269         LOSSY_CONVERSIONS("lossy-conversions"),
270 
271         /**
272           * Warn about compiler generation of a default constructor.
273           */
274         MISSING_EXPLICIT_CTOR("missing-explicit-ctor"),
275 
276         /**
277          * Warn about module system related issues.
278          */
279         MODULE("module"),
280 
281         /**
282          * Warn about issues related to migration of JDK classes.
283          */
284         MIGRATION("migration"),
285 
286         /**
287          * Warn about issues regarding module opens.
288          */
289         OPENS("opens"),
290 
291         /**
292          * Warn about issues relating to use of command line options
293          */
294         OPTIONS("options"),
295 
296         /**
297          * Warn when any output file is written to more than once.
298          */
299         OUTPUT_FILE_CLASH("output-file-clash"),
300 
301         /**
302          * Warn about issues regarding method overloads.
303          */
304         OVERLOADS("overloads"),
305 
< prev index next >