java switch语法
switch(type){
case "aaa":
break;
case "bbb":
break;
case "ccc":
break;
case "ddd":
break;
default:
break;
}