Package org.apache.commons.collections
Class HashBag
- java.lang.Object
-
- org.apache.commons.collections.DefaultMapBag
-
- org.apache.commons.collections.HashBag
-
- All Implemented Interfaces:
java.lang.Iterable,java.util.Collection,Bag
public class HashBag extends DefaultMapBag implements Bag
Deprecated.Moved to bag subpackage and rewritten internally. Due to be removed in v4.0.ABagthat is backed by aHashMap.- Since:
- Commons Collections 2.0
-
-
Method Summary
-
Methods inherited from class org.apache.commons.collections.DefaultMapBag
add, add, addAll, clear, contains, containsAll, containsAll, equals, getCount, hashCode, isEmpty, iterator, remove, remove, removeAll, retainAll, retainAll, size, toArray, toArray, toString, uniqueSet
-
Methods inherited from interface org.apache.commons.collections.Bag
add, add, containsAll, getCount, iterator, remove, remove, removeAll, retainAll, size, uniqueSet
-
-
-
-
Constructor Detail
-
HashBag
public HashBag()
Deprecated.Constructs an emptyHashBag.
-
HashBag
public HashBag(java.util.Collection coll)
Deprecated.Constructs aBagcontaining all the members of the given collection.- Parameters:
coll- a collection to copy into this bag
-
-