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