static S firstNotStartingWith(Collection l, S prefix) { for (S s : unnull(l)) if (!startsWith(s, prefix)) ret s; null; }