case
lines should be indented with four spaces, and statements within the case should be indented with another four spaces.switch (var) {
case TWO:
setChoice("two");
break;
case THREE:
setChoice("three");
break;
default:
throw new IllegalArgumentException();
}
Refer to Wrapping statements for guidelines on how to indent continuation lines.