Update to reflect new/removed classes
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131091 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
13d49d7341
commit
55102a32c1
|
@ -1,14 +1,21 @@
|
||||||
<!-- $Id: package.html,v 1.8 2002/12/08 15:30:58 scolebourne Exp $ -->
|
<!-- $Id: package.html,v 1.9 2003/05/16 16:00:29 scolebourne Exp $ -->
|
||||||
<html>
|
<body>
|
||||||
<head>
|
|
||||||
<title>Package Documentation for org.apache.commons.collections</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>
|
<p>
|
||||||
Java Collections Framework extensions.
|
The Apache Jakarta Commons Collections Framework extensions are implemented in
|
||||||
|
a number of packages.
|
||||||
|
<ul>
|
||||||
|
<li>The main package, described below, contains new collections
|
||||||
|
interfaces/implementations and new implementations of the standard interfaces.
|
||||||
|
<li>The <code>comparators</code> subpackage contains <code>Comparator</code> implementations.
|
||||||
|
<li>The <code>iterators</code> subpackage contains <code>Iterator</code> implementations.
|
||||||
|
<li>The <code>decorators</code> subpackage contains decorators that wrap other
|
||||||
|
implementations to add functionality such as validation or unmodifiability.
|
||||||
|
<li>The <code>primitives</code> subpackages contain implementations of collections
|
||||||
|
based around primitive types.
|
||||||
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
See also the <tt>java.util</tt> package.
|
See also the <tt>java.util</tt> package for the standard java collections.
|
||||||
</p>
|
</p>
|
||||||
<table border="1" cellspacing="0" cellpadding="3">
|
<table border="1" cellspacing="0" cellpadding="3">
|
||||||
<tr bgcolor="#CCCCFF" class="TableHeadingColor">
|
<tr bgcolor="#CCCCFF" class="TableHeadingColor">
|
||||||
|
@ -18,7 +25,8 @@
|
||||||
<td valign="top">List Implementations</td>
|
<td valign="top">List Implementations</td>
|
||||||
<td>
|
<td>
|
||||||
{@link org.apache.commons.collections.CursorableLinkedList}<br>
|
{@link org.apache.commons.collections.CursorableLinkedList}<br>
|
||||||
{@link org.apache.commons.collections.FastArrayList}
|
{@link org.apache.commons.collections.FastArrayList}<br>
|
||||||
|
{@link org.apache.commons.collections.NodeCachingLinkedList}<br>
|
||||||
</td>
|
</td>
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
Special-purpose implementations of the {@link
|
Special-purpose implementations of the {@link
|
||||||
|
@ -35,10 +43,8 @@
|
||||||
{@link org.apache.commons.collections.FastTreeMap}<br>
|
{@link org.apache.commons.collections.FastTreeMap}<br>
|
||||||
{@link org.apache.commons.collections.LRUMap}<br>
|
{@link org.apache.commons.collections.LRUMap}<br>
|
||||||
{@link org.apache.commons.collections.MultiHashMap}<br>
|
{@link org.apache.commons.collections.MultiHashMap}<br>
|
||||||
{@link org.apache.commons.collections.ProxyMap}<br>
|
|
||||||
{@link org.apache.commons.collections.ReferenceMap}<br>
|
{@link org.apache.commons.collections.ReferenceMap}<br>
|
||||||
{@link org.apache.commons.collections.SequencedHashMap}<br>
|
{@link org.apache.commons.collections.SequencedHashMap}<br>
|
||||||
{@link org.apache.commons.collections.SoftRefHashMap}<br>
|
|
||||||
{@link org.apache.commons.collections.StaticBucketMap}<br>
|
{@link org.apache.commons.collections.StaticBucketMap}<br>
|
||||||
</td>
|
</td>
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
|
@ -47,33 +53,43 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top">Buffer Interface and Implementations</td>
|
|
||||||
<td>
|
|
||||||
{@link org.apache.commons.collections.ArrayStack}<br>
|
|
||||||
{@link org.apache.commons.collections.BinaryHeap}<br>
|
|
||||||
{@link org.apache.commons.collections.BoundedFifoBuffer}<br>
|
|
||||||
{@link org.apache.commons.collections.Buffer}<br>
|
|
||||||
{@link org.apache.commons.collections.PriorityQueue}<br>
|
|
||||||
{@link org.apache.commons.collections.SynchronizedPriorityQueue}
|
|
||||||
{@link org.apache.commons.collections.UnboundedFifoBuffer}
|
|
||||||
</td>
|
|
||||||
<td valign="top">
|
|
||||||
New collection interface that specifies a removal order for
|
|
||||||
the collection, used to implement queues and queue-like things.
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<td valign="top">Bag Interface and Implementations</td>
|
<td valign="top">Bag Interface and Implementations</td>
|
||||||
<td>
|
<td>
|
||||||
{@link org.apache.commons.collections.Bag}<br>
|
{@link org.apache.commons.collections.Bag}<br>
|
||||||
{@link org.apache.commons.collections.DefaultMapBag}<br>
|
{@link org.apache.commons.collections.DefaultMapBag}<br>
|
||||||
{@link org.apache.commons.collections.HashBag}<br>
|
{@link org.apache.commons.collections.HashBag}<br>
|
||||||
{@link org.apache.commons.collections.SortedBag}<br>
|
{@link org.apache.commons.collections.SortedBag}<br>
|
||||||
{@link org.apache.commons.collections.TreeBag}
|
{@link org.apache.commons.collections.TreeBag}<br>
|
||||||
</td>
|
</td>
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
New collections interface that keeps a count of its members.
|
New collections interface that keeps a count of its members.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td valign="top">Buffer Interface and Implementations</td>
|
||||||
|
<td>
|
||||||
|
{@link org.apache.commons.collections.Buffer}<br>
|
||||||
|
{@link org.apache.commons.collections.ArrayStack}<br>
|
||||||
|
{@link org.apache.commons.collections.BinaryHeap}<br>
|
||||||
|
{@link org.apache.commons.collections.BoundedFifoBuffer}<br>
|
||||||
|
{@link org.apache.commons.collections.CircularFifoBuffer}<br>
|
||||||
|
{@link org.apache.commons.collections.UnboundedFifoBuffer}<br>
|
||||||
|
</td>
|
||||||
|
<td valign="top">
|
||||||
|
New collections interface that specifies a removal order for
|
||||||
|
the collection, used to implement queues and queue-like things.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td valign="top">PriorityQueue Interface and Implementations</td>
|
||||||
|
<td>
|
||||||
|
{@link org.apache.commons.collections.PriorityQueue}<br>
|
||||||
|
{@link org.apache.commons.collections.BinaryHeap}<br>
|
||||||
|
</td>
|
||||||
|
<td valign="top">
|
||||||
|
New collections interface that defines a simple queue.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top">Utilities</td>
|
<td valign="top">Utilities</td>
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
|
@ -84,7 +100,8 @@
|
||||||
{@link org.apache.commons.collections.IteratorUtils}<br>
|
{@link org.apache.commons.collections.IteratorUtils}<br>
|
||||||
{@link org.apache.commons.collections.ListUtils}<br>
|
{@link org.apache.commons.collections.ListUtils}<br>
|
||||||
{@link org.apache.commons.collections.MapUtils}<br>
|
{@link org.apache.commons.collections.MapUtils}<br>
|
||||||
{@link org.apache.commons.collections.SetUtils}
|
{@link org.apache.commons.collections.PriorityQueueUtils}<br>
|
||||||
|
{@link org.apache.commons.collections.SetUtils}<br>
|
||||||
</td>
|
</td>
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
Manipulate collection objects, determine set theoretic
|
Manipulate collection objects, determine set theoretic
|
||||||
|
@ -92,30 +109,33 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top">Functor Interfaces</td>
|
<td valign="top">Functor Interfaces and Utilities</td>
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
{@link org.apache.commons.collections.Factory}<br>
|
|
||||||
{@link org.apache.commons.collections.Predicate}<br>
|
|
||||||
{@link org.apache.commons.collections.Closure}<br>
|
{@link org.apache.commons.collections.Closure}<br>
|
||||||
|
{@link org.apache.commons.collections.ClosureUtils}<br>
|
||||||
|
{@link org.apache.commons.collections.Factory}<br>
|
||||||
|
{@link org.apache.commons.collections.FactoryUtils}<br>
|
||||||
|
{@link org.apache.commons.collections.Predicate}<br>
|
||||||
|
{@link org.apache.commons.collections.PredicateUtils}<br>
|
||||||
{@link org.apache.commons.collections.Transformer}<br>
|
{@link org.apache.commons.collections.Transformer}<br>
|
||||||
|
{@link org.apache.commons.collections.TransformerUtils}<br>
|
||||||
</td>
|
</td>
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
Create views or functors on a collection. If your collection
|
Create views or functors on a collection. If your collection
|
||||||
represents <i>X</i>, these allow you to define and look at
|
represents <i>X</i>, these allow you to define and look at
|
||||||
<i>f(X)</i>.
|
<i>f(X)</i>. The utilities contain numerous implementations.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top">Miscellaneous</td>
|
<td valign="top">Miscellaneous</td>
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
{@link org.apache.commons.collections.StringStack}<br>
|
|
||||||
{@link org.apache.commons.collections.DefaultMapEntry}<br>
|
{@link org.apache.commons.collections.DefaultMapEntry}<br>
|
||||||
{@link org.apache.commons.collections.BoundedCollection}<br>
|
{@link org.apache.commons.collections.BoundedCollection}<br>
|
||||||
|
{@link org.apache.commons.collections.MultiKey}<br>
|
||||||
</td>
|
</td>
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
Other collection related classes.
|
Other collection related classes.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
Loading…
Reference in New Issue