public abstract class TypeConverter<T,V> extends Object
Constructor and Description |
---|
TypeConverter(Class<T> fromClass,
Class<V> toClass) |
Modifier and Type | Method and Description |
---|---|
abstract V |
convert(T value)
Converts a value from one type to another.
|