List of utility methods to do Set Union
SortedSet<T> retVal = new TreeSet<T>(a); retVal.addAll(b); return retVal;