static A getOrKeep(Map map, A a) { if (map == null) ret a; A v = map.get(a); ret v != null ? v : a; }