If a case has more than 2-3 statements it's bette(from point of view of readability and clean code) to extract them as separate methods:
switch (variable){
case A: handleCaseA(); break;
case B: handleCaseB(); break;
default: handleDefaultCase(); break;
}