static L withoutEmptyAfterTrims(Collection l) { new L out; for (S s : unnull(l)) if (!emptyAfterTrim(s)) out.add(s); ret out; }