static S upper(S s) { ret s == null ? null : s.toUpperCase(); } static char upper(char c) { ret Character.toUpperCase(c); }