Ich habe ein verschachteltes Schleifenkonstrukt wie folgt: for (Type type : types) { for (Type t : types2) { if (some condition) { // Do something and break... break; // Breaks out of the inner loop } } } Wie kann ich nun aus beiden Schleifen ausbrechen? Ich habe mir ähnliche Fragen...