1 2 3 4 5 6 7 8 9 10 11
import lombok.val; public class ValWithLabel { { LABEL: for (val x : new String[0]) { if (x.toLowerCase() == null) { continue LABEL; } } } }