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