static L filterByShortClassName(Iterable l, S name) { new L out; for (O o : unnull(l)) if (shortClassNameIs(o, name)) out.add(o); ret out; }