static String firstToUpper(String s) { if (empty(s)) ret s; return Character.toUpperCase(s.charAt(0)) + s.substring(1); }