You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2003/05/16 18:00:29 UTC

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections package.html

scolebourne    2003/05/16 09:00:29

  Modified:    collections/src/java/org/apache/commons/collections
                        package.html
  Log:
  Update to reflect new/removed classes
  
  Revision  Changes    Path
  1.9       +141 -121  jakarta-commons/collections/src/java/org/apache/commons/collections/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/package.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- package.html	8 Dec 2002 15:30:58 -0000	1.8
  +++ package.html	16 May 2003 16:00:29 -0000	1.9
  @@ -1,121 +1,141 @@
   <!-- $Id$ -->
  -<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>
  +<body>
  +  <p>
  +     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>
  +     See also the <tt>java.util</tt> package for the standard java collections.
  +  </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}<br>
  +      {@link org.apache.commons.collections.NodeCachingLinkedList}<br>
  +    </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.ReferenceMap}<br>
  +      {@link org.apache.commons.collections.SequencedHashMap}<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">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}<br>
  +    </td>
  +    <td valign="top">
  +      New collections interface that keeps a count of its members.
  +    </td>
  +  </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>
  +    <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.PriorityQueueUtils}<br>
  +      {@link org.apache.commons.collections.SetUtils}<br>
  +    </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 and Utilities</td>
  +    <td valign="top">
  +      {@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.TransformerUtils}<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>. The utilities contain numerous implementations.
  +    </td>
  +  </tr>
  +  <tr>
  +    <td valign="top">Miscellaneous</td>
  +    <td valign="top">
  +      {@link org.apache.commons.collections.DefaultMapEntry}<br>
  +      {@link org.apache.commons.collections.BoundedCollection}<br>
  +      {@link org.apache.commons.collections.MultiKey}<br>
  +    </td>
  +    <td valign="top">
  +      Other collection related classes.
  +    </td>
  +  </tr>
  +  </table>
  +</body>
  \ No newline at end of file
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org