Inspectopedia 2025.2 Help

Maximum 'switch' branches

Reports switch statements or expressions with too many case labels.

Such a long switch statement may be confusing and should probably be refactored. Sometimes, it is not a problem (for example, a domain is very complicated and has enums with a lot of constants).

Example:

switch (x) { case 1 -> {} case 2 -> {} case 3 -> {} case 4 -> {} case 5 -> {} case 6 -> {} case 7 -> {} case 8 -> {} case 9 -> {} case 10 -> {} case 11,12,13 -> {} default -> {} }

Locating this inspection

By ID

Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.

SwitchStatementWithTooManyBranches
Via Settings dialog

Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.

Settings or Preferences | Editor | Inspections | Java | Control flow issues

Use the Maximum number of branches field to specify the maximum number of case labels expected.

Inspection options

Here you can find the description of settings available for the Maximum 'switch' branches inspection, and the reference of their default values.

Maximum number of branches

Default value:

10

Suppressing Inspection

You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:

//noinspection SwitchStatementWithTooManyBranches

More detailed instructions as well as other ways and options that you have can be found in the product documentation:

Inspection Details

By default bundled with:

IntelliJ IDEA 2025.2, Qodana for JVM 2025.2,

Last modified: 18 September 2025