org.apache.commons.convert
Class CollectionConverters.ListCreator
java.lang.Object
org.apache.commons.convert.CollectionConverters.ListCreator
- All Implemented Interfaces:
- ConverterCreator, ConverterLoader
- Enclosing class:
- CollectionConverters
public static class CollectionConverters.ListCreator
- extends Object
- implements ConverterCreator, ConverterLoader
Method Summary |
|
createConverter(Class<S> sourceClass,
Class<T> targetClass)
Creates a Converter that can convert the sourceClass to
the targetClass . |
void |
loadConverters()
Create and register converters with the Java object type
conversion framework. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CollectionConverters.ListCreator
public CollectionConverters.ListCreator()
createConverter
public <S,T> Converter<S,T> createConverter(Class<S> sourceClass,
Class<T> targetClass)
- Description copied from interface:
ConverterCreator
- Creates a Converter that can convert the
sourceClass
to
the targetClass
. Returns null
if this creator
doesn't support the class pair.
- Specified by:
createConverter
in interface ConverterCreator
- Parameters:
sourceClass
- The source Class
to convert fromtargetClass
- The target Class
to convert to
- Returns:
- A
Converter
that can convert sourceClass
to targetClass
loadConverters
public void loadConverters()
- Description copied from interface:
ConverterLoader
- Create and register converters with the Java object type
conversion framework. If the converter extends one of the
converter abstract classes, then the converter will register
itself when an instance is created. Otherwise, call
Converters.registerConverter(Converter)
with the Converter
instance.
- Specified by:
loadConverters
in interface ConverterLoader
Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.