Update to latest package status
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130884 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
35041694f4
commit
257fbcc0a5
|
@ -1,120 +1,121 @@
|
|||
<!-- $Id: package.html,v 1.7 2002/08/16 00:00:23 pjack Exp $ -->
|
||||
<html>
|
||||
<head>
|
||||
<title>Package Documentation for org.apache.commons.collections</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
Java Collections Framework extensions.
|
||||
</p>
|
||||
<p>
|
||||
See also the <tt>java.util</tt> package.
|
||||
</p>
|
||||
<table border="1" cellspacing="0" cellpadding="3">
|
||||
<tr bgcolor="#CCCCFF" class="TableHeadingColor">
|
||||
<th>Category</th><th>Classes</th><th>Comments</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">List Implementations</td>
|
||||
<td>
|
||||
{@link org.apache.commons.collections.CursorableLinkedList}<br>
|
||||
{@link org.apache.commons.collections.FastArrayList}
|
||||
</td>
|
||||
<td valign="top">
|
||||
Special-purpose implementations of the {@link
|
||||
java.util.List} interface.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">Map Implementations</td>
|
||||
<td>
|
||||
{@link org.apache.commons.collections.BeanMap}<br>
|
||||
{@link org.apache.commons.collections.DoubleOrderedMap}<br>
|
||||
{@link org.apache.commons.collections.ExtendedProperties}<br>
|
||||
{@link org.apache.commons.collections.FastHashMap}<br>
|
||||
{@link org.apache.commons.collections.FastTreeMap}<br>
|
||||
{@link org.apache.commons.collections.LRUMap}<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.SequencedHashMap}<br>
|
||||
{@link org.apache.commons.collections.SoftRefHashMap}<br>
|
||||
{@link org.apache.commons.collections.StaticBucketMap}<br>
|
||||
</td>
|
||||
<td valign="top">
|
||||
Special-purpose implementations of the {@link
|
||||
java.util.Map} interface and associated classes.
|
||||
</td>
|
||||
</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>
|
||||
{@link org.apache.commons.collections.Bag}<br>
|
||||
{@link org.apache.commons.collections.DefaultMapBag}<br>
|
||||
{@link org.apache.commons.collections.HashBag}<br>
|
||||
{@link org.apache.commons.collections.SortedBag}<br>
|
||||
{@link org.apache.commons.collections.TreeBag}
|
||||
</td>
|
||||
<td valign="top">
|
||||
New collections interface that keeps a count of its members.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">Utilities</td>
|
||||
<td valign="top">
|
||||
{@link org.apache.commons.collections.BagUtils}<br>
|
||||
{@link org.apache.commons.collections.BufferUtils}<br>
|
||||
{@link org.apache.commons.collections.CollectionUtils}<br>
|
||||
{@link org.apache.commons.collections.ComparatorUtils}<br>
|
||||
{@link org.apache.commons.collections.ListUtils}<br>
|
||||
{@link org.apache.commons.collections.MapUtils}<br>
|
||||
{@link org.apache.commons.collections.SetUtils}
|
||||
</td>
|
||||
<td valign="top">
|
||||
Manipulate collection objects, determine set theoretic
|
||||
properties, ensure type-safety, provide decorators, etc.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">Functor Interfaces</td>
|
||||
<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.Transformer}<br>
|
||||
</td>
|
||||
<td valign="top">
|
||||
Create views or functors on a collection. If your collection
|
||||
represents <i>X</i>, these allow you to define and look at
|
||||
<i>f(X)</i>.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">Miscellaneous</td>
|
||||
<td valign="top">
|
||||
{@link org.apache.commons.collections.StringStack}<br>
|
||||
{@link org.apache.commons.collections.DefaultMapEntry}<br>
|
||||
</td>
|
||||
<td valign="top">
|
||||
A stack of strings; and the trivial implementation of
|
||||
{@link java.util.Map.Entry}.
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
<!-- $Id: package.html,v 1.8 2002/12/08 15:30:58 scolebourne Exp $ -->
|
||||
<html>
|
||||
<head>
|
||||
<title>Package Documentation for org.apache.commons.collections</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
Java Collections Framework extensions.
|
||||
</p>
|
||||
<p>
|
||||
See also the <tt>java.util</tt> package.
|
||||
</p>
|
||||
<table border="1" cellspacing="0" cellpadding="3">
|
||||
<tr bgcolor="#CCCCFF" class="TableHeadingColor">
|
||||
<th>Category</th><th>Classes</th><th>Comments</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">List Implementations</td>
|
||||
<td>
|
||||
{@link org.apache.commons.collections.CursorableLinkedList}<br>
|
||||
{@link org.apache.commons.collections.FastArrayList}
|
||||
</td>
|
||||
<td valign="top">
|
||||
Special-purpose implementations of the {@link
|
||||
java.util.List} interface.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">Map Implementations</td>
|
||||
<td>
|
||||
{@link org.apache.commons.collections.BeanMap}<br>
|
||||
{@link org.apache.commons.collections.DoubleOrderedMap}<br>
|
||||
{@link org.apache.commons.collections.ExtendedProperties}<br>
|
||||
{@link org.apache.commons.collections.FastHashMap}<br>
|
||||
{@link org.apache.commons.collections.FastTreeMap}<br>
|
||||
{@link org.apache.commons.collections.LRUMap}<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.SequencedHashMap}<br>
|
||||
{@link org.apache.commons.collections.SoftRefHashMap}<br>
|
||||
{@link org.apache.commons.collections.StaticBucketMap}<br>
|
||||
</td>
|
||||
<td valign="top">
|
||||
Special-purpose implementations of the {@link
|
||||
java.util.Map} interface and associated classes.
|
||||
</td>
|
||||
</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>
|
||||
{@link org.apache.commons.collections.Bag}<br>
|
||||
{@link org.apache.commons.collections.DefaultMapBag}<br>
|
||||
{@link org.apache.commons.collections.HashBag}<br>
|
||||
{@link org.apache.commons.collections.SortedBag}<br>
|
||||
{@link org.apache.commons.collections.TreeBag}
|
||||
</td>
|
||||
<td valign="top">
|
||||
New collections interface that keeps a count of its members.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">Utilities</td>
|
||||
<td valign="top">
|
||||
{@link org.apache.commons.collections.BagUtils}<br>
|
||||
{@link org.apache.commons.collections.BufferUtils}<br>
|
||||
{@link org.apache.commons.collections.CollectionUtils}<br>
|
||||
{@link org.apache.commons.collections.ComparatorUtils}<br>
|
||||
{@link org.apache.commons.collections.IteratorUtils}<br>
|
||||
{@link org.apache.commons.collections.ListUtils}<br>
|
||||
{@link org.apache.commons.collections.MapUtils}<br>
|
||||
{@link org.apache.commons.collections.SetUtils}
|
||||
</td>
|
||||
<td valign="top">
|
||||
Manipulate collection objects, determine set theoretic
|
||||
properties, ensure type-safety, provide decorators, etc.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">Functor Interfaces</td>
|
||||
<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.Transformer}<br>
|
||||
</td>
|
||||
<td valign="top">
|
||||
Create views or functors on a collection. If your collection
|
||||
represents <i>X</i>, these allow you to define and look at
|
||||
<i>f(X)</i>.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">Miscellaneous</td>
|
||||
<td valign="top">
|
||||
{@link org.apache.commons.collections.StringStack}<br>
|
||||
{@link org.apache.commons.collections.DefaultMapEntry}<br>
|
||||
{@link org.apache.commons.collections.BoundedCollection}<br>
|
||||
</td>
|
||||
<td valign="top">
|
||||
Other collection related classes.
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue