SOURCE - is the generic type of the object to be converted.TARGET - is the generic type of the result of the conversion.public interface SimpleValueConverter<SOURCE,TARGET>
converts a value of the
type <SOURCE> to the type <TARGET>. | Modifier and Type | Method and Description |
|---|---|
<T extends TARGET> |
convert(SOURCE value,
Object valueSource,
Class<T> targetClass)
This method converts the given
pojo to the <TARGET>-type. |
<T extends TARGET> T convert(SOURCE value, Object valueSource, Class<T> targetClass) throws ValueException
pojo to the <TARGET>-type.T - is the generic type of targetClass.value - is the value to convert.valueSource - describes the source of the value. This may be the filename where the value was read
from, an XPath where the value was located in an XML document, etc. It is used in exceptions
thrown if something goes wrong. This will help to find the problem easier.targetClass - is the type to convert the value to.value or null if the conversion is NOT possible. The returned value
has to be an instance of the given targetType.ValueException - if the conversion failed (e.g. the given value is illegal for the given
targetClass).ValueExceptionCopyright © 2001–2016 mmm-Team. All rights reserved.