class Test { private String test(int[] all) { for (int z : all) { if (z > 5) continue; if (z < 0) return "sample"; } return "default"; } }