Evaluate the switch clause in this Java code:
int number = 1;
switch(number) {
case 0: System.out.println("It is 0"); break;
case 1: System.out.println("It is 1");
case 2: System.out.println("It is 2"); break;
default: System.out.println("Unknown number");
}