Interface ContextualConverter<SOURCE,TARGET,CONTEXT>
-
- Type Parameters:
SOURCE- type of source objectTARGET- type of target objectCONTEXT- type of context objec
- All Superinterfaces:
Converter<SOURCE,TARGET>,org.springframework.core.convert.converter.Converter<SOURCE,TARGET>
- All Known Implementing Classes:
AbstractContextualPopulatingConverter
public interface ContextualConverter<SOURCE,TARGET,CONTEXT> extends Converter<SOURCE,TARGET>
Extends the ordinaryConverterinterface. Additionally provides convert methods that accept a context for the convert process.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TARGETconvertWithContext(SOURCE source, CONTEXT context)Converts the source object, creating a new instance of the destination type-
Methods inherited from interface de.hybris.platform.servicelayer.dto.converter.Converter
convert, convert, convertAll, convertAllIgnoreExceptions, getLogger
-
-