static Map getFieldsAsMap_notNulls(Collection fields, O o) { new LinkedHashMap map; fOr (S field : fields) { O value = getOpt(o, field); if (value != null) map.put(field, value); } ret map; }