Deprecated Methods |
org.apache.commons.collections.bidimap.AbstractDualBidiMap.createMap()
For constructors, use the new two map constructor.
For deserialization, populate the maps array directly in readObject. |
org.apache.commons.collections.CollectionUtils.index(Object, int)
use CollectionUtils.get(Object, int) instead. Will be removed in v4.0 |
org.apache.commons.collections.CollectionUtils.index(Object, Object)
use CollectionUtils.get(Object, int) instead. Will be removed in v4.0 |
org.apache.commons.collections.BagUtils.transformedBag(Bag, Transformer)
TransformedCollections are not type-safe in Java 1.5. |
org.apache.commons.collections.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.collections.BagUtils.typedBag(Bag, Class)
Java 1.5 generics makes this method no longer useful. |
org.apache.commons.collections.BufferUtils.typedBuffer(Buffer, Class)
No longer required with Java 1.5 Generics. |
org.apache.commons.collections.CollectionUtils.typedCollection(Collection, Class)
Obsoleted by Java 1.5 Generics. |
org.apache.commons.collections.ListUtils.typedList(List, Class)
Java generics makes this method obsolete. |
org.apache.commons.collections.MapUtils.typedMap(Map, Class, Class)
this is no longer needed with Java generics. |
org.apache.commons.collections.SetUtils.typedSet(Set, Class)
Made obsolete by Java 1.5 generics. |
org.apache.commons.collections.BagUtils.typedSortedBag(SortedBag, Class)
Java 1.5 generics makes this method no longer useful. |
org.apache.commons.collections.MapUtils.typedSortedMap(SortedMap, Class, Class)
no longer needed with Java generics. |
org.apache.commons.collections.SetUtils.typedSortedSet(SortedSet, Class)
made obsolete by Java 1.5 generics. |