static L sortFilesAlphaNumIC(L l) { ret sorted(l, new Comparator() { public int compare(File a, File b) { ret cmpAlphaNumIC(a.getName(), b.getName()); } }); }