diff --git a/src/java/org/apache/commons/collections/comparators/package.html b/src/java/org/apache/commons/collections/comparators/package.html
index 24866bdfa..065680d7c 100644
--- a/src/java/org/apache/commons/collections/comparators/package.html
+++ b/src/java/org/apache/commons/collections/comparators/package.html
@@ -1,5 +1,5 @@
-Contains concrete {@link java.util.Comparator Comparator} instances.
+Contains concrete {@link java.util.Comparator Comparator} implementations.
You may also consider using
{@link org.apache.commons.collections.ComparatorUtils CompatorUtils},
which is a single class that uses static methods to construct instances
diff --git a/src/java/org/apache/commons/collections/iterators/package.html b/src/java/org/apache/commons/collections/iterators/package.html
new file mode 100644
index 000000000..e486c41f4
--- /dev/null
+++ b/src/java/org/apache/commons/collections/iterators/package.html
@@ -0,0 +1,3 @@
+
+Contains concrete {@link java.util.Iterator} implementations and utilities.
+
diff --git a/src/java/org/apache/commons/collections/package.html b/src/java/org/apache/commons/collections/package.html
index dee88cfa4..08ed09b75 100644
--- a/src/java/org/apache/commons/collections/package.html
+++ b/src/java/org/apache/commons/collections/package.html
@@ -1,4 +1,4 @@
-
+
Package Documentation for org.apache.commons.collections
@@ -29,7 +29,6 @@
Map Implementations |
{@link org.apache.commons.collections.BeanMap}
- {@link org.apache.commons.collections.DefaultMapEntry}
{@link org.apache.commons.collections.DoubleOrderedMap}
{@link org.apache.commons.collections.ExtendedProperties}
{@link org.apache.commons.collections.FastHashMap}
@@ -37,8 +36,10 @@
{@link org.apache.commons.collections.LRUMap}
{@link org.apache.commons.collections.MultiHashMap}
{@link org.apache.commons.collections.ProxyMap}
+ {@link org.apache.commons.collections.ReferenceMap}
{@link org.apache.commons.collections.SequencedHashMap}
{@link org.apache.commons.collections.SoftRefHashMap}
+ {@link org.apache.commons.collections.StaticBucketMap}
|
Special-purpose implementations of the {@link
@@ -46,23 +47,25 @@
|
- Stack and Queue Implementations |
+ Buffer Interface and Implementations |
{@link org.apache.commons.collections.ArrayStack}
{@link org.apache.commons.collections.BinaryHeap}
+ {@link org.apache.commons.collections.BoundedFifoBuffer}
+ {@link org.apache.commons.collections.Buffer}
{@link org.apache.commons.collections.PriorityQueue}
{@link org.apache.commons.collections.SynchronizedPriorityQueue}
+ {@link org.apache.commons.collections.UnboundedFifoBuffer}
|
- Special-purpose implementations of the {@link
- java.util.Stack} interface, as well as similar {@link
- org.apache.commons.collections.PriorityQueue}
- interface.
+ New collection interface that specifies a removal order for
+ the collection, used to implement queues and queue-like things.
|
Bag Interface and Implementations |
{@link org.apache.commons.collections.Bag}
+ {@link org.apache.commons.collections.DefaultMapBag}
{@link org.apache.commons.collections.HashBag}
{@link org.apache.commons.collections.SortedBag}
{@link org.apache.commons.collections.TreeBag}
@@ -71,40 +74,29 @@
New collections interface that keeps a count of its members.
|
-
-
- Adapters |
-
- {@link org.apache.commons.collections.ArrayEnumeration}
- {@link org.apache.commons.collections.ArrayIterator}
- {@link org.apache.commons.collections.EnumerationIterator}
- {@link org.apache.commons.collections.IteratorEnumeration}
- |
-
- Access Java1-style containers as though they were
- Java2-style Collections and vice-versa.
- |
-
Utilities |
- {@link org.apache.commons.collections.Closure}
+ {@link org.apache.commons.collections.BagUtils}
+ {@link org.apache.commons.collections.BufferUtils}
{@link org.apache.commons.collections.CollectionUtils}
- {@link org.apache.commons.collections.MapUtils}
+ {@link org.apache.commons.collections.ComparatorUtils}
+ {@link org.apache.commons.collections.ListUtils}
+ {@link org.apache.commons.collections.MapUtils}
+ {@link org.apache.commons.collections.SetUtils}
|
Manipulate collection objects, determine set theoretic
- properties, ensure type-safety, etc.
+ properties, ensure type-safety, provide decorators, etc.
|
- Transformation Tools |
+ Functor Interfaces |
- {@link org.apache.commons.collections.FilterIterator}
+ {@link org.apache.commons.collections.Factory}
{@link org.apache.commons.collections.Predicate}
- {@link org.apache.commons.collections.ProxyIterator}
+ {@link org.apache.commons.collections.Closure}
{@link org.apache.commons.collections.Transformer}
- {@link org.apache.commons.collections.TransformIterator}
|
Create views or functors on a collection. If your collection
@@ -112,6 +104,17 @@
f(X).
|
+
+ Miscellaneous |
+
+ {@link org.apache.commons.collections.StringStack}
+ {@link org.apache.commons.collections.DefaultMapEntry}
+ |
+
+ A stack of strings; and the trivial implementation of
+ {@link java.util.Map.Entry}.
+ |
+