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