Package com.tangosol.util
Class CollectionHelper
java.lang.Object
com.tangosol.util.CollectionHelper
Deprecated.
As of Coherence 12.1.2
This abstract class contains helper functions for
 manipulating collections and enumerations.
- Version:
 - 1.00, 04/25/00
 - Author:
 - Pat McNerthney
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionstatic Collectionconvert(Collection colOriginal, Converter converter) Deprecated.Convert a collection from one set of objects to a new set of objects.static Enumerationconvert(Enumeration enmr, Converter converter) Deprecated.Convert an Enumeration from one set of objects to a new set of objects.static IteratorDeprecated.Convert an Iterator from one set of objects to a new set of objects. 
- 
Constructor Details
- 
CollectionHelper
public CollectionHelper()Deprecated. 
 - 
 - 
Method Details
- 
convert
Deprecated.Convert a collection from one set of objects to a new set of objects.- Parameters:
 colOriginal- the original collection of objectsconverter- an object which will perform the conversion of elements of the collection- Returns:
 - the converted collection
 
 - 
convert
Deprecated.Convert an Iterator from one set of objects to a new set of objects.- Parameters:
 iter- the original Iterator of objectsconverter- an object which will perform the conversion- Returns:
 - the converted Iterator
 
 - 
convert
Deprecated.Convert an Enumeration from one set of objects to a new set of objects.- Parameters:
 enmr- the original Enumeration of objectsconverter- an object which will perform the conversion- Returns:
 - the converted Enumeration
 
 
 -