// "Replace Stream API chain with loop" "true" import java.util.List; public class Main { public void test(List list) { boolean x = !list.stream().allMatch(i -> i > 2); if(x) { System.out.println("found"); } } }