org.apache.commons.collections
Class HashBag

java.lang.Object
  extended by org.apache.commons.collections.DefaultMapBag
      extended by org.apache.commons.collections.HashBag
All Implemented Interfaces:
java.lang.Iterable, java.util.Collection, Bag

Deprecated. Moved to bag subpackage and rewritten internally. Due to be removed in v4.0.

public class HashBag
extends DefaultMapBag
implements Bag

A Bag that is backed by a HashMap.

Since:
Commons Collections 2.0
Version:
$Revision: 646777 $ $Date: 2008-04-10 13:33:15 +0100 (Thu, 10 Apr 2008) $
Author:
Chuck Burdick

Constructor Summary
HashBag()
          Deprecated. Constructs an empty HashBag.
HashBag(java.util.Collection coll)
          Deprecated. Constructs a Bag containing all the members of the given collection.
 
Method Summary
 
Methods inherited from class org.apache.commons.collections.DefaultMapBag
add, add, addAll, calcTotalSize, clear, contains, containsAll, containsAll, equals, getCount, getMap, hashCode, isEmpty, iterator, remove, remove, removeAll, retainAll, retainAll, setMap, size, toArray, toArray, toString, uniqueSet
 
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, add, containsAll, getCount, iterator, remove, remove, removeAll, retainAll, size, uniqueSet
 
Methods inherited from interface java.util.Collection
addAll, clear, contains, equals, hashCode, isEmpty, toArray, toArray
 

Constructor Detail

HashBag

public HashBag()
Deprecated. 
Constructs an empty HashBag.


HashBag

public HashBag(java.util.Collection coll)
Deprecated. 
Constructs a Bag containing all the members of the given collection.

Parameters:
coll - a collection to copy into this bag


Copyright © 2001-2008 The Apache Software Foundation. All Rights Reserved.