I have to evaluate many conditions. In my case, I have to do something like this:
switch(id) { case 5: // switch some other cases here case 6:
Avoid !
Try to refactor your code to eliminate switch cases. Switch statements for behaviours can be refactored into Strategy Pattern.