static Set getFromMultipleMapsAsCISet(Collection> maps, A key) { Set out = ciSet(); if (maps != null) for (Map map : maps) addIfNotNull(out, map.get(key)); ret out; }