< prev index next >

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

Print this page

225         /**
226          * Warn about use of incubating modules.
227          */
228         INCUBATING("incubating"),
229 
230         /**
231           * Warn about compiler possible lossy conversions.
232           */
233         LOSSY_CONVERSIONS("lossy-conversions"),
234 
235         /**
236           * Warn about compiler generation of a default constructor.
237           */
238         MISSING_EXPLICIT_CTOR("missing-explicit-ctor"),
239 
240         /**
241          * Warn about module system related issues.
242          */
243         MODULE("module"),
244 





245         /**
246          * Warn about issues regarding module opens.
247          */
248         OPENS("opens"),
249 
250         /**
251          * Warn about issues relating to use of command line options
252          */
253         OPTIONS("options"),
254 
255         /**
256          * Warn when any output file is written to more than once.
257          */
258         OUTPUT_FILE_CLASH("output-file-clash"),
259 
260         /**
261          * Warn about issues regarding method overloads.
262          */
263         OVERLOADS("overloads"),
264 

225         /**
226          * Warn about use of incubating modules.
227          */
228         INCUBATING("incubating"),
229 
230         /**
231           * Warn about compiler possible lossy conversions.
232           */
233         LOSSY_CONVERSIONS("lossy-conversions"),
234 
235         /**
236           * Warn about compiler generation of a default constructor.
237           */
238         MISSING_EXPLICIT_CTOR("missing-explicit-ctor"),
239 
240         /**
241          * Warn about module system related issues.
242          */
243         MODULE("module"),
244 
245         /**
246          * Warn about issues related to migration of JDK classes.
247          */
248         MIGRATION("migration"),
249 
250         /**
251          * Warn about issues regarding module opens.
252          */
253         OPENS("opens"),
254 
255         /**
256          * Warn about issues relating to use of command line options
257          */
258         OPTIONS("options"),
259 
260         /**
261          * Warn when any output file is written to more than once.
262          */
263         OUTPUT_FILE_CLASH("output-file-clash"),
264 
265         /**
266          * Warn about issues regarding method overloads.
267          */
268         OVERLOADS("overloads"),
269 
< prev index next >