Deprecated Methods |
org.apache.commons.collections15.CollectionUtils.addAll(Collection, Enumeration extends E>)
Replaced by Collection.addAll(java.util.Collection extends E>) |
org.apache.commons.collections15.CollectionUtils.addAll(Collection, Iterator extends E>)
Replaced by Collection.addAll(java.util.Collection extends E>) |
org.apache.commons.collections15.collection.CompositeCollection.addComposited(Collection extends E>, Collection extends E>)
Superceded by the variable argument implementation of addComposited() |
org.apache.commons.collections15.set.CompositeSet.addComposited(Collection extends E>, Collection extends E>)
Superceded by the variable argument implementation of addComposited() |
org.apache.commons.collections15.bidimap.AbstractDualBidiMap.createMap()
For constructors, use the new two map constructor.
For deserialization, populate the maps array directly in readObject. |
org.apache.commons.collections15.CollectionUtils.index(Object, int)
use CollectionUtils.get(Object, int) instead. Will be removed in v4.0 |
org.apache.commons.collections15.CollectionUtils.index(Object, Object)
use CollectionUtils.get(Object, int) instead. Will be removed in v4.0 |
org.apache.commons.collections15.BagUtils.transformedBag(Bag, Transformer)
TransformedCollections are not type-safe in Java 1.5. |
org.apache.commons.collections15.BagUtils.transformedSortedBag(SortedBag, Transformer)
This breaks the java.util.Collection interface in Java 1.5. It is recommended that it not be used. |
org.apache.commons.collections15.BagUtils.typedBag(Bag, Class)
Java 1.5 generics makes this method no longer useful. |
org.apache.commons.collections15.BufferUtils.typedBuffer(Buffer, Class)
No longer required with Java 1.5 Generics. |
org.apache.commons.collections15.CollectionUtils.typedCollection(Collection, Class)
Obsoleted by Java 1.5 Generics. |
org.apache.commons.collections15.ListUtils.typedList(List, Class)
Java generics makes this method obsolete. |
org.apache.commons.collections15.MapUtils.typedMap(Map, Class, Class)
this is no longer needed with Java generics. |
org.apache.commons.collections15.SetUtils.typedSet(Set, Class)
Made obsolete by Java 1.5 generics. |
org.apache.commons.collections15.BagUtils.typedSortedBag(SortedBag, Class)
Java 1.5 generics makes this method no longer useful. |
org.apache.commons.collections15.MapUtils.typedSortedMap(SortedMap, Class, Class)
no longer needed with Java generics. |
org.apache.commons.collections15.SetUtils.typedSortedSet(SortedSet, Class)
made obsolete by Java 1.5 generics. |