Deprecated API


Contents
Deprecated Classes
org.apache.commons.collections.bag.TypedBag
          Type safety classes not required anymore under 1.5, just use a typed Bag. 
org.apache.commons.collections.collection.TypedCollection
          Type safe classes are no longer required under 1.5. 
org.apache.commons.collections.list.TypedList
          Java Generics makes this class obsolete. 
org.apache.commons.collections.map.TypedMap
          no longer needed with Java generics. 
org.apache.commons.collections.map.TypedSortedMap
          no longer needed with Java generics. 
 

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. 
 

Deprecated Constructors
org.apache.commons.collections.bidimap.AbstractDualBidiMap()
          should not be used. 
 



Copyright © 2005-2005 Apache Software Foundation, Matt Hall, John Watkinson. All Rights Reserved.