207 /**
208 * Warn about falling through from one case of a switch statement to the next.
209 */
210 FALLTHROUGH("fallthrough"),
211
212 /**
213 * Warn about finally clauses that do not terminate normally.
214 */
215 FINALLY("finally"),
216
217 /**
218 * Warn about compiler generation of a default constructor.
219 */
220 MISSING_EXPLICIT_CTOR("missing-explicit-ctor"),
221
222 /**
223 * Warn about module system related issues.
224 */
225 MODULE("module"),
226
227 /**
228 * Warn about issues regarding module opens.
229 */
230 OPENS("opens"),
231
232 /**
233 * Warn about issues relating to use of command line options
234 */
235 OPTIONS("options"),
236
237 /**
238 * Warn about issues regarding method overloads.
239 */
240 OVERLOADS("overloads"),
241
242 /**
243 * Warn about issues regarding method overrides.
244 */
245 OVERRIDES("overrides"),
246
|
207 /**
208 * Warn about falling through from one case of a switch statement to the next.
209 */
210 FALLTHROUGH("fallthrough"),
211
212 /**
213 * Warn about finally clauses that do not terminate normally.
214 */
215 FINALLY("finally"),
216
217 /**
218 * Warn about compiler generation of a default constructor.
219 */
220 MISSING_EXPLICIT_CTOR("missing-explicit-ctor"),
221
222 /**
223 * Warn about module system related issues.
224 */
225 MODULE("module"),
226
227 /**
228 * Warn about issues related to migration of JDK classes.
229 */
230 MIGRATION("migration"),
231
232 /**
233 * Warn about issues regarding module opens.
234 */
235 OPENS("opens"),
236
237 /**
238 * Warn about issues relating to use of command line options
239 */
240 OPTIONS("options"),
241
242 /**
243 * Warn about issues regarding method overloads.
244 */
245 OVERLOADS("overloads"),
246
247 /**
248 * Warn about issues regarding method overrides.
249 */
250 OVERRIDES("overrides"),
251
|