static S addSuffix(S s, S suffix) { ret s == null || s.endsWith(suffix) ? s : s + suffix; }