static Map callGetters(O o, S... propertyNames) { new LinkedHashMap map; for (S s : propertyNames) map.put(s, callOpt(o, "get" + firstToUpper(s))); ret map; }