Hey, When I use:
System.out.println(CatFactory.getCatByKey(reader.readLine()));
Without the loop, I have good output for each String key because it's fit to switch. But the situation is changing, when I try use do-while, or while loop to match the requirements. While loop should break my loop automatically when I press "" empty enter, right? But my output is like this: I am typing "kitty" and confirm with Enter. It should display promptly, one of the switch. But the program want's to hit again!, Enter. And then it is display the result of switch. But worst i that, if I type correct switch key, it is display default Cat. do-while loop is looks like this. I am typing "kafel" and it is true, match to key switch, my output is promptly. And after, the program wants new input. This is expected of me. Now I try to put next key switch, so I am typing "mańka" and program ends! Difference is in the do-while will accept 4th goal of requirements.