< prev index next >

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

Print this page

219         /**
220          * Warn about use of incubating modules.
221          */
222         INCUBATING("incubating"),
223 
224         /**
225           * Warn about compiler possible lossy conversions.
226           */
227         LOSSY_CONVERSIONS("lossy-conversions"),
228 
229         /**
230           * Warn about compiler generation of a default constructor.
231           */
232         MISSING_EXPLICIT_CTOR("missing-explicit-ctor"),
233 
234         /**
235          * Warn about module system related issues.
236          */
237         MODULE("module"),
238 





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

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