Files
2022-12-23 13:26:29 +00:00

13 lines
446 B
Java

// "Collapse loop with stream 'findFirst()'" "true-preview"
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Objects;
public class Main {
public void testMap(Map<String, List<String>> map) throws Exception {
String firstStr = map.values().stream().filter(Objects::nonNull).flatMap(Collection::stream).filter(str -> !str.isEmpty()).findFirst().orElse("");
System.out.println(firstStr);
}
}