// "Unroll loop" "true-preview" import java.util.*; class Test { void test() { for(String s : Collections.singleton("xyz")) { if(!s.isEmpty()) { System.out.println(s); } } } }