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