static S toUpper(S s) { ret s == null ? null : s.toUpperCase(); } static L toUpper(Collection s) { ret allToUpper(s); }