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