class IfStatement{ Integer methode(Boolean b){ if(b){ return 1; }else{ return 2; } } }