Class AdapterConverter
java.lang.Object
com.fasterxml.jackson.databind.util.StdConverter<Object,Object>
com.fasterxml.jackson.module.jakarta.xmlbind.AdapterConverter
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.fasterxml.jackson.databind.util.Converter
Converter.None -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final XmlAdapter<Object,Object> protected final booleanprotected final JavaTypeprotected final JavaType -
Constructor Summary
ConstructorsConstructorDescriptionAdapterConverter(XmlAdapter<?, ?> adapter, JavaType inType, JavaType outType, boolean ser) -
Method Summary
Modifier and TypeMethodDescriptionMain 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).Methods inherited from class com.fasterxml.jackson.databind.util.StdConverter
_findConverterType
-
Field Details
-
_inputType
-
_targetType
-
_adapter
-
_forSerialization
protected final boolean _forSerialization
-
-
Constructor Details
-
AdapterConverter
-
-
Method Details
-
convert
Description copied from interface:ConverterMain conversion method. -
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<Object,Object> - Overrides:
getInputTypein classStdConverter<Object,Object>
-
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<Object,Object> - Overrides:
getOutputTypein classStdConverter<Object,Object>
-