Class StdConverter<IN,OUT>
java.lang.Object
com.fasterxml.jackson.databind.util.StdConverter<IN,OUT>
- All Implemented Interfaces:
Converter<IN,OUT>
-
Nested Class Summary
Nested classes/interfaces inherited from interface Converter
Converter.None -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected JavaTypeabstract OUTMain conversion method.getInputType(TypeFactory typeFactory) Method that can be used to find out actual input (source) type; this usually can be determined from type parameters, but may need to be implemented differently from programmatically defined converters (which cannot change static type parameter bindings).getOutputType(TypeFactory typeFactory) Method that can be used to find out actual output (target) type; this usually can be determined from type parameters, but may need to be implemented differently from programmatically defined converters (which cannot change static type parameter bindings).
-
Constructor Details
-
StdConverter
public StdConverter()
-
-
Method Details
-
convert
-
getInputType
Description copied from interface:ConverterMethod that can be used to find out actual input (source) type; this usually can be determined from type parameters, but may need to be implemented differently from programmatically defined converters (which cannot change static type parameter bindings).- Specified by:
getInputTypein interfaceConverter<IN,OUT>
-
getOutputType
Description copied from interface:ConverterMethod that can be used to find out actual output (target) type; this usually can be determined from type parameters, but may need to be implemented differently from programmatically defined converters (which cannot change static type parameter bindings).- Specified by:
getOutputTypein interfaceConverter<IN,OUT>
-
_findConverterType
-