Enum 'switch' statement that misses case
Reports switch
statements over enumerated types that are not exhaustive.
Example:
enum AlphaBetaGamma {
A, B, C;
void x(AlphaBetaGamma e) {
switch (e) {
}
}
}
After the quick-fix is applied:
enum AlphaBetaGamma {
A, B, C;
void x(AlphaBetaGamma e) {
switch (e) {
case A -> {}
case B -> {}
case C -> {}
}
}
}
- 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.
EnumSwitchStatementWhichMissesCases
Use the Ignore switch statements with a default branch option to ignore switch
statements that have a default
branch.
This inspection depends on the Java feature 'Enums', which is available since Java 5.
Here you can find the description of settings available for the Enum 'switch' statement that misses case inspection, and the reference of their default values.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |