Back to Intellij Community

SwitchStatement

java/java-impl/resources/inspectionDescriptions/SwitchStatement.html

2025.3-rc-2160 B
Original Source

Reports switch statements.

switch statements often (but not always) indicate a poor object-oriented design.

Example:

switch (i) {
    // code
  }