static A lookupIgnoreCase(Map map, S key) { for (S s : map.keySet()) if (eqic(s, key)) ret map.get(s); null; } static L lookupIgnoreCase(MultiMap map, S key) { for (S s : map.keySet()) if (eqic(s, key)) ret map.get(s); ret litlist(); }