I have an immutable set (cast as a Set) that potentially contains many elements. I need a Collection that contains the elements from that set plu
Set
You might consider Sets.union(). Construction would be faster, but use slower.
public static Set setWith(Set old, T item) { return Sets.union(old, Collections.singleton(item); }
(com.google.common.collect.Sets & java.util.Collections)