Update to include latest map additions

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131686 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2004-04-30 21:13:38 +00:00
parent 640d3a7b30
commit 51c209801f
1 changed files with 7 additions and 4 deletions

View File

@ -1,4 +1,4 @@
<!-- $Id: package.html,v 1.8 2004/04/12 11:37:05 scolebourne Exp $ -->
<!-- $Id: package.html,v 1.9 2004/04/30 21:13:38 scolebourne Exp $ -->
<!--
Copyright 2003-2004 The Apache Software Foundation
@ -27,18 +27,21 @@ simple iteration of map keys and values.
<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