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