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