static S addDotIfNoPunctuation(S s) { ret s == null ? null : endsWithPunctuation(s) ? s : s + "."; }