// "Replace 'switch' with 'if'" "true" class X { public void doSomething( String value) { //comment1 //comment4 //comment6 //comment7 if ("case1".equals(value)) {//comment2 //comment3 } else if ("case2".equals(value)) {//comment5 }//comment8 } }