Package | Description |
---|---|
org.apache.commons.collections4.set |
This package contains implementations of the
Set ,
SortedSet and
NavigableSet interfaces. |
Modifier and Type | Method and Description |
---|---|
boolean |
CompositeSet.SetMutator.add(CompositeSet<E> composite,
java.util.List<java.util.Set<E>> sets,
E obj)
Called when an object is to be added to the composite.
|
boolean |
CompositeSet.SetMutator.addAll(CompositeSet<E> composite,
java.util.List<java.util.Set<E>> sets,
java.util.Collection<? extends E> coll)
Called when a collection is to be added to the composite.
|
void |
CompositeSet.SetMutator.resolveCollision(CompositeSet<E> comp,
java.util.Set<E> existing,
java.util.Set<E> added,
java.util.Collection<E> intersects)
Called when a Set is added to the CompositeSet and there is a
collision between existing and added sets.
|