Class CollectionSortedBag<E>
- java.lang.Object
 - 
- org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
 - 
- org.apache.commons.collections4.bag.AbstractBagDecorator<E>
 - 
- org.apache.commons.collections4.bag.AbstractSortedBagDecorator<E>
 - 
- org.apache.commons.collections4.bag.CollectionSortedBag<E>
 
 
 
 
 
- 
- Type Parameters:
 E- the type of elements in this bag
- All Implemented Interfaces:
 java.io.Serializable,java.lang.Iterable<E>,java.util.Collection<E>,Bag<E>,SortedBag<E>
public final class CollectionSortedBag<E> extends AbstractSortedBagDecorator<E>
Decorates anotherSortedBagto comply with the Collection contract.- Since:
 - 4.0
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description CollectionSortedBag(SortedBag<E> bag)Constructor that wraps (not copies). 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(E object)(Violation) Adds one copy of the specified object to the Bag.booleanadd(E object, int count)AddsnCopiescopies of the specified object to the Bag.booleanaddAll(java.util.Collection<? extends E> coll)static <E> SortedBag<E>collectionSortedBag(SortedBag<E> bag)Factory method to create a sorted bag that complies to the Collection contract.booleancontainsAll(java.util.Collection<?> coll)(Violation) Returnstrueif the bag contains all elements in the given collection, respecting cardinality.booleanremove(java.lang.Object object)(Violation) Removes all occurrences of the given object from the bag.booleanremoveAll(java.util.Collection<?> coll)(Violation) Remove all elements represented in the given collection, respecting cardinality.booleanretainAll(java.util.Collection<?> coll)(Violation) Remove any members of the bag that are not in the given collection, respecting cardinality.- 
Methods inherited from class org.apache.commons.collections4.bag.AbstractSortedBagDecorator
comparator, first, last 
- 
Methods inherited from class org.apache.commons.collections4.bag.AbstractBagDecorator
equals, getCount, hashCode, remove, uniqueSet 
- 
Methods inherited from class org.apache.commons.collections4.collection.AbstractCollectionDecorator
clear, contains, isEmpty, iterator, removeIf, size, toArray, toArray, toString 
- 
Methods inherited from interface org.apache.commons.collections4.Bag
getCount, iterator, remove, size, uniqueSet 
 - 
 
 - 
 
- 
- 
Method Detail
- 
collectionSortedBag
public static <E> SortedBag<E> collectionSortedBag(SortedBag<E> bag)
Factory method to create a sorted bag that complies to the Collection contract.- Type Parameters:
 E- the type of the elements in the bag- Parameters:
 bag- the sorted bag to decorate, must not be null- Returns:
 - a SortedBag that complies to the Collection contract
 - Throws:
 java.lang.NullPointerException- if bag is null
 
- 
containsAll
public boolean containsAll(java.util.Collection<?> coll)
Description copied from interface:Bag(Violation) Returnstrueif the bag contains all elements in the given collection, respecting cardinality. That is, if the given collectioncollcontainsncopies of a given object, callingBag.getCount(Object)on that object must be>= nfor allnincoll.The
Collection.containsAll(Collection)method specifies that cardinality should not be respected; this method should return true if the bag contains at least one of every object contained in the given collection.- Specified by:
 containsAllin interfaceBag<E>- Specified by:
 containsAllin interfacejava.util.Collection<E>- Overrides:
 containsAllin classAbstractCollectionDecorator<E>- Parameters:
 coll- the collection to check against- Returns:
 trueif the Bag contains all the collection
 
- 
add
public boolean add(E object)
Description copied from interface:Bag(Violation) Adds one copy of the specified object to the Bag.If the object is already in the
Bag.uniqueSet()then increment its count as reported byBag.getCount(Object). Otherwise add it to theBag.uniqueSet()and report its count as 1.Since this method always increases the size of the bag, according to the
Collection.add(Object)contract, it should always returntrue. Since it sometimes returnsfalse, this method violates the contract. 
- 
addAll
public boolean addAll(java.util.Collection<? extends E> coll)
- Specified by:
 addAllin interfacejava.util.Collection<E>- Overrides:
 addAllin classAbstractCollectionDecorator<E>
 
- 
remove
public boolean remove(java.lang.Object object)
Description copied from interface:Bag(Violation) Removes all occurrences of the given object from the bag.This will also remove the object from the
Bag.uniqueSet().According to the
Collection.remove(Object)method, this method should only remove the first occurrence of the given object, not all occurrences. 
- 
removeAll
public boolean removeAll(java.util.Collection<?> coll)
Description copied from interface:Bag(Violation) Remove all elements represented in the given collection, respecting cardinality. That is, if the given collectioncollcontainsncopies of a given object, the bag will havenfewer copies, assuming the bag had at leastncopies to begin with.The
Collection.removeAll(Collection)method specifies that cardinality should not be respected; this method should remove all occurrences of every object contained in the given collection. 
- 
retainAll
public boolean retainAll(java.util.Collection<?> coll)
Description copied from interface:Bag(Violation) Remove any members of the bag that are not in the given collection, respecting cardinality. That is, if the given collectioncollcontainsncopies of a given object and the bag hasm > ncopies, then deletem - ncopies from the bag. In addition, ifeis an object in the bag but!coll.contains(e), then removeeand any of its copies.The
Collection.retainAll(Collection)method specifies that cardinality should not be respected; this method should keep all occurrences of every object contained in the given collection. 
- 
add
public boolean add(E object, int count)
Description copied from interface:BagAddsnCopiescopies of the specified object to the Bag.If the object is already in the
Bag.uniqueSet()then increment its count as reported byBag.getCount(Object). Otherwise add it to theBag.uniqueSet()and report its count asnCopies. 
 - 
 
 -