@Deprecated public abstract class CollectionHelper extends Object
| Constructor and Description |
|---|
CollectionHelper()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static Collection |
convert(Collection colOriginal, Converter converter)
Deprecated.
Convert a collection from one set of objects to a new set of objects.
|
static Enumeration |
convert(Enumeration enmr, Converter converter)
Deprecated.
Convert an Enumeration from one set of objects to a new set of objects.
|
static Iterator |
convert(Iterator iter, Converter converter)
Deprecated.
Convert an Iterator from one set of objects to a new set of objects.
|
public static Collection convert(Collection colOriginal, Converter converter)
colOriginal - the original collection of objectsconverter - an object which will perform the conversion of elements of the collectionpublic static Iterator convert(Iterator iter, Converter converter)
iter - the original Iterator of objectsconverter - an object which will perform the conversionpublic static Enumeration convert(Enumeration enmr, Converter converter)
enmr - the original Enumeration of objectsconverter - an object which will perform the conversion