static boolean startsWithLowerCaseOrUnderscore(S s) { ret nempty(s) && (s.startsWith("_") || Character.isLowerCase(s.charAt(0))); }