static TreeSet toCaseInsensitiveSet(Iterable c) { if (isCISet(c)) ret (TreeSet) c; TreeSet set = caseInsensitiveSet(); addAll(set, c); ret set; } static TreeSet toCaseInsensitiveSet(S... x) { TreeSet set = caseInsensitiveSet(); addAll(set, x); ret set; }