diff --git a/pom.xml b/pom.xml index 3dd7662aee..4aed58b4f2 100644 --- a/pom.xml +++ b/pom.xml @@ -126,7 +126,7 @@ 0.78 0.85 0.78 - 1.12.0 + 2.0.0 2.7.9 5.5.0 diff --git a/src/main/java/org/apache/commons/collections4/overview.html b/src/main/javadoc/overview.html similarity index 72% rename from src/main/java/org/apache/commons/collections4/overview.html rename to src/main/javadoc/overview.html index d25f39bdd4..01ffb03aab 100644 --- a/src/main/java/org/apache/commons/collections4/overview.html +++ b/src/main/javadoc/overview.html @@ -28,19 +28,20 @@ See also the {@code java.util} package for the standard Java collections.

-

Main features

+

Main features

Commons-Collections defines a number of key interfaces:

- - +
+ + - - - - - - - - -
Interfaces
InterfaceDescription
- {@link org.apache.commons.collections.Bag} + {@link org.apache.commons.collections4.Bag} + A new {@code Collection} subinterface that stores each object together with the number of occurrences. Methods are provided to get the number of occurrences, and to add and remove a certain number of that object. @@ -48,57 +49,48 @@

Main features

- {@link org.apache.commons.collections.Buffer} - - A new {@code Collection} subinterface that allows objects to be removed - in some well-defined order. Methods enable the next item to be peeked and removed. + {@link org.apache.commons.collections4.BidiMap}
- {@link org.apache.commons.collections.BidiMap} - A new {@code Map} subinterface that allows lookup from key to value and from value to key with equal ease.
- {@link org.apache.commons.collections.OrderedMap} + {@link org.apache.commons.collections4.OrderedMap} + A new {@code Map} subinterface that is used when a map has an order, but is not sorted. Methods enable bidirectional iteration through the map.
- {@link org.apache.commons.collections.MapIterator} + {@link org.apache.commons.collections4.MapIterator} + A new {@code Iterator} subinterface specially designed for maps. This iterator avoids the need for entrySet iteration of a map, and is simpler to use.
- {@link org.apache.commons.collections.ResettableIterator} + {@link org.apache.commons.collections4.ResettableIterator} + A new {@code Iterator} subinterface that allows the iteration to be reset back to the start. Many iterators in this library have this functionality.
- {@link org.apache.commons.collections.Closure}
- {@link org.apache.commons.collections.Predicate}
- {@link org.apache.commons.collections.Transformer}
- {@link org.apache.commons.collections.Factory}
+ {@link org.apache.commons.collections4.Closure}
+ {@link org.apache.commons.collections4.Predicate}
+ {@link org.apache.commons.collections4.Transformer}
+ {@link org.apache.commons.collections4.Factory}
+ A group of functor interfaces that provide plugin behavior to various collections and utilities.