T
- The component typepublic interface ReifiedSet<T extends java.lang.Comparable<T>> extends IValueStore<T>
Modifier and Type | Method and Description |
---|---|
void |
difference(java.util.Set<? extends T> otherSet)
This operation removes all items from this set, only keeping items that are not common between this set and the other set.
|
void |
intersect(java.util.Set<? extends T> otherSet)
This operation removes from this set all items that are common between this set and the other set.
|
void |
union(java.util.Set<? extends T> otherSet)
This operation combines this set with another set i.e.
|
add, clear, contains, remove, size, toArray, toList
getGenericTypeParameter
void union(java.util.Set<? extends T> otherSet)
void intersect(java.util.Set<? extends T> otherSet)
void difference(java.util.Set<? extends T> otherSet)