static L collectMapElement(Collection l, O key) { new L out; if (l != null) for (Map map : l) out.add(map.get(key)); ret out; }