< prev index next >

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

Print this page

249          * <p>
250          * This category is not supported by {@code @SuppressWarnings}.
251          */
252         INCUBATING("incubating", Property.NO_ANNOTATION_SUPPRESSION, Property.ENABLED_BY_DEFAULT),
253 
254         /**
255           * Warn about compiler possible lossy conversions.
256           */
257         LOSSY_CONVERSIONS("lossy-conversions"),
258 
259         /**
260           * Warn about compiler generation of a default constructor.
261           */
262         MISSING_EXPLICIT_CTOR("missing-explicit-ctor"),
263 
264         /**
265          * Warn about module system related issues.
266          */
267         MODULE("module", Property.ENABLED_BY_DEFAULT),
268 





269         /**
270          * Warn about issues regarding module opens.
271          */
272         OPENS("opens", Property.ENABLED_BY_DEFAULT),
273 
274         /**
275          * Warn about issues relating to use of command line options.
276          *
277          * <p>
278          * This category is not supported by {@code @SuppressWarnings}.
279          */
280         OPTIONS("options", Property.NO_ANNOTATION_SUPPRESSION),
281 
282         /**
283          * Warn when any output file is written to more than once.
284          *
285          * <p>
286          * This category is not supported by {@code @SuppressWarnings}.
287          */
288         OUTPUT_FILE_CLASH("output-file-clash", Property.NO_ANNOTATION_SUPPRESSION),

249          * <p>
250          * This category is not supported by {@code @SuppressWarnings}.
251          */
252         INCUBATING("incubating", Property.NO_ANNOTATION_SUPPRESSION, Property.ENABLED_BY_DEFAULT),
253 
254         /**
255           * Warn about compiler possible lossy conversions.
256           */
257         LOSSY_CONVERSIONS("lossy-conversions"),
258 
259         /**
260           * Warn about compiler generation of a default constructor.
261           */
262         MISSING_EXPLICIT_CTOR("missing-explicit-ctor"),
263 
264         /**
265          * Warn about module system related issues.
266          */
267         MODULE("module", Property.ENABLED_BY_DEFAULT),
268 
269         /**
270          * Warn about issues related to migration of JDK classes.
271          */
272         MIGRATION("migration"),
273 
274         /**
275          * Warn about issues regarding module opens.
276          */
277         OPENS("opens", Property.ENABLED_BY_DEFAULT),
278 
279         /**
280          * Warn about issues relating to use of command line options.
281          *
282          * <p>
283          * This category is not supported by {@code @SuppressWarnings}.
284          */
285         OPTIONS("options", Property.NO_ANNOTATION_SUPPRESSION),
286 
287         /**
288          * Warn when any output file is written to more than once.
289          *
290          * <p>
291          * This category is not supported by {@code @SuppressWarnings}.
292          */
293         OUTPUT_FILE_CLASH("output-file-clash", Property.NO_ANNOTATION_SUPPRESSION),
< prev index next >