scolebourne 2004/04/30 14:13:38
Modified: collections/src/java/org/apache/commons/collections/map
package.html
Log:
Update to include latest map additions
Revision Changes Path
1.9 +7 -4
jakarta-commons/collections/src/java/org/apache/commons/collections/map/package.html
Index: package.html
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/map/package.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- package.html 12 Apr 2004 11:37:05 -0000 1.8
+++ package.html 30 Apr 2004 21:13:38 -0000 1.9
@@ -27,18 +27,21 @@
<p>
The following implementations are provided:
<ul>
+<li>CaseInsensitiveMap - map that compares keys in a case insensitive way
+<li>CompositeMap - map that combines multiple maps into a single view
<li>HashedMap - general purpose HashMap replacement supporting MapIterator
-<li>IdentityMap - Map that uses == for comparison instead of equals()
+<li>IdentityMap - map that uses == for comparison instead of equals()
<li>Flat3Map - designed for good performance at size 3 or less
<li>LinkedMap - a hash map that maintains insertion order, supporting
OrderedMapIterator
-<li>ReferenceMap - allows the garbage collector to collect keys and values
+<li>MultiKeyMap - map that provides special methods for using more than one key to
access the value
+<li>ReferenceMap - allows the garbage collector to collect keys and values using
equals() for comparison
+<li>ReferenceIdentityMap - allows the garbage collector to collect keys and values
using == for comparison
<li>SingletonMap - a fully featured map to hold one key-value pair
<li>StaticBucketMap - internally synchronized and designed for thread-contentious
environments
</ul>
<p>
The following decorators are provided:
<ul>
-<!--li>Synchronized - synchronizes method access for multi-threaded environments-->
<li>Unmodifiable - ensures the collection cannot be altered
<li>Predicated - ensures that only elements that are valid according to a predicate
can be added
<li>Typed - ensures that only elements that are of a specific type can be added
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]