Exhaustiveness check for switch expressions
Reports switch expressions that do not cover all possible outcomes of the matched expression.
Groovy does not require that switch expression must be exhaustive. It acts as if an implicit default -> null
branch is inserted. It may cause unexpected nulls if a developer forgets to insert necessary case
branches.
Example:
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.
GrSwitchExhaustivenessCheck- 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.
Inspection options
Here you can find the description of settings available for the Exhaustiveness check for switch expressions inspection, and the reference of their default values.
- Report unmatched 'null'
Not selected
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Groovy, 242.22892 |