org.apache.commons.collections.bag
Class UnmodifiableSortedBag

java.lang.Object
  |
  +--org.apache.commons.collections.collection.AbstractCollectionDecorator
        |
        +--org.apache.commons.collections.bag.AbstractBagDecorator
              |
              +--org.apache.commons.collections.bag.AbstractSortedBagDecorator
                    |
                    +--org.apache.commons.collections.bag.UnmodifiableSortedBag
All Implemented Interfaces:
Bag, Collection, SortedBag, Unmodifiable

public final class UnmodifiableSortedBag
extends AbstractSortedBagDecorator
implements Unmodifiable

Decorates another SortedBag to ensure it can't be altered.

Since:
Commons Collections 3.0
Version:
$Revision: 1.5 $ $Date: 2004/01/14 21:43:08 $
Author:
Stephen Colebourne

Fields inherited from class org.apache.commons.collections.collection.AbstractCollectionDecorator
collection
 
Method Summary
 boolean add(Object object)
          (Violation) Adds one copy the specified object to the Bag.
 boolean addAll(Collection coll)
           
 void clear()
           
static SortedBag decorate(SortedBag bag)
          Factory method to create an unmodifiable bag.
 Iterator iterator()
          Returns an Iterator over the entire set of members, including copies due to cardinality.
 boolean remove(Object object)
          (Violation) Removes all occurrences of the given object from the bag.
 boolean removeAll(Collection coll)
          (Violation) Remove all elements represented in the given collection, respecting cardinality.
 boolean retainAll(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.collections.bag.AbstractSortedBagDecorator
comparator, first, getSortedBag, last
 
Methods inherited from class org.apache.commons.collections.bag.AbstractBagDecorator
add, getBag, getCount, remove, uniqueSet
 
Methods inherited from class org.apache.commons.collections.collection.AbstractCollectionDecorator
contains, containsAll, equals, getCollection, hashCode, isEmpty, size, toArray, toArray, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.apache.commons.collections.Bag
add, containsAll, getCount, remove, size, uniqueSet
 
Methods inherited from interface java.util.Collection
contains, equals, hashCode, isEmpty, toArray, toArray
 

Method Detail

decorate

public static SortedBag decorate(SortedBag bag)
Factory method to create an unmodifiable bag.
Parameters:
bag - the bag to decorate, must not be null
Throws:
IllegalArgumentException - if bag is null

iterator

public Iterator iterator()
Description copied from interface: Bag
Returns an Iterator over the entire set of members, including copies due to cardinality. This iterator is fail-fast and will not tolerate concurrent modifications.
Overrides:
iterator in class AbstractCollectionDecorator
Following copied from interface: org.apache.commons.collections.Bag
Returns:
iterator over all elements in the Bag

add

public boolean add(Object object)
Description copied from interface: Bag
(Violation) Adds one copy the specified object to the Bag.

If the object is already in the Bag.uniqueSet() then increment its count as reported by Bag.getCount(Object). Otherwise add it to the Bag.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 return true. Since it sometimes returns false, this method violates the contract. A future version of this method will comply by always returning true.

Overrides:
add in class AbstractCollectionDecorator
Following copied from interface: org.apache.commons.collections.Bag
Parameters:
object - the object to add
Returns:
true if the object was not already in the uniqueSet

addAll

public boolean addAll(Collection coll)
Overrides:
addAll in class AbstractCollectionDecorator

clear

public void clear()
Overrides:
clear in class AbstractCollectionDecorator

remove

public boolean remove(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. A future version of this method will comply with the contract by only removing one occurrence of the given object.

Overrides:
remove in class AbstractCollectionDecorator
Following copied from interface: org.apache.commons.collections.Bag
Returns:
true if this call changed the collection

removeAll

public boolean removeAll(Collection coll)
Description copied from interface: Bag
(Violation) Remove all elements represented in the given collection, respecting cardinality. That is, if the given collection coll contains n copies of a given object, the bag will have n fewer copies, assuming the bag had at least n copies 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. A future version of this method will comply with that contract.

Overrides:
removeAll in class AbstractCollectionDecorator
Following copied from interface: org.apache.commons.collections.Bag
Parameters:
coll - the collection to remove
Returns:
true if this call changed the collection

retainAll

public boolean retainAll(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 collection coll contains n copies of a given object and the bag has m > n copies, then delete m - n copies from the bag. In addition, if e is an object in the bag but !coll.contains(e), then remove e and 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. A future version of this method will comply with that contract.

Overrides:
retainAll in class AbstractCollectionDecorator
Following copied from interface: org.apache.commons.collections.Bag
Parameters:
coll - the collection to retain
Returns:
true if this call changed the collection


Copyright © 2001-2004 Apache Software Foundation. All Rights Reserved.