sbool startsWithUpperCaseOrUnderscore(S s) { if (empty(s)) false; char c = s.charAt(0); ret c == '_' || Character.isUpperCase(c); }