org.apache.commons.collections

Class HashBag

Implemented Interfaces:
Bag, Collection

public class HashBag
extends DefaultMapBag
implements Bag

A Bag that is backed by a HashMap.
Version:
$Revision: 1.13 $ $Date: 2004/02/18 01:15:42 $
Author:
Chuck Burdick
Since:
Commons Collections 2.0

Constructor Summary

HashBag()
Constructs an empty HashBag.
HashBag(Collection coll)
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

Constructor Details

HashBag

public HashBag()
Constructs an empty HashBag.

HashBag

public HashBag(Collection coll)
Constructs a Bag containing all the members of the given collection.
Parameters:
coll - a collection to copy into this bag

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