static L containingJavaToken(Collection l, S token) { new L out; for (S s : unnull(l)) if (containsJavaToken(s, token)) out.add(s); ret out; }