static S quoteIfNotIdentifier(S s) { if (s == null) return null; return isJavaIdentifier(s) ? s : quote(s); }