static Map indexFilesByName(Iterable files) { new Map map; for (File f : unnull(files)) if (f != null) map.put(f.getName(), f); ret map; }