static S internIfLongerThan(S s, int l) { ret s == null ? null : l(s) >= l ? s.intern() : s; }