Uses of Interface
tools.jackson.databind.deser.ValueInstantiators
Packages that use ValueInstantiators
Package
Description
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode), as well as
writing Java Objects and trees as JSON.Package that contains most of configuration-related classes;
exception being couple of most-commonly used configuration
things (like Feature enumerations) that are at the
main level (
tools.jackson.databind).Contains implementation classes of deserialization part of
data binding.
Package that contains classes and interfaces to help implement
custom extension
JacksonModules
(which are registered on ObjectMapper via builders}.-
Uses of ValueInstantiators in tools.jackson.databind
Methods in tools.jackson.databind with parameters of type ValueInstantiatorsModifier and TypeMethodDescriptionJacksonModule.SetupContext.addValueInstantiators(ValueInstantiators instantiators) Method that module can use to register additionalValueInstantiators, by addingValueInstantiatorsobject that gets called when instantatiator is needed by a deserializer. -
Uses of ValueInstantiators in tools.jackson.databind.cfg
Fields in tools.jackson.databind.cfg declared as ValueInstantiatorsModifier and TypeFieldDescriptionprotected final ValueInstantiators[]DeserializerFactoryConfig._valueInstantiatorsList of objects that know how to create instances of POJO types; possibly using custom construction (non-annoted constructors; factory methods external to value type etc).protected static final ValueInstantiators[]DeserializerFactoryConfig.NO_VALUE_INSTANTIATORSMethods in tools.jackson.databind.cfg that return types with arguments of type ValueInstantiatorsMethods in tools.jackson.databind.cfg with parameters of type ValueInstantiatorsModifier and TypeMethodDescriptionModuleContextBase.addValueInstantiators(ValueInstantiators instantiators) DeserializerFactoryConfig.withValueInstantiators(ValueInstantiators instantiators) Fluent/factory method used to construct a configuration object that has same configuration as this instance plus specified additional value instantiator provider object.Constructors in tools.jackson.databind.cfg with parameters of type ValueInstantiatorsModifierConstructorDescriptionprotectedDeserializerFactoryConfig(Deserializers[] allAdditionalDeserializers, KeyDeserializers[] allAdditionalKeyDeserializers, ValueDeserializerModifier[] modifiers, ValueInstantiators[] vi) Copy-constructor that will create an instance that contains defined set of additional deserializer providers. -
Uses of ValueInstantiators in tools.jackson.databind.deser
Classes in tools.jackson.databind.deser that implement ValueInstantiatorsModifier and TypeClassDescriptionstatic classBasic "NOP" implementation that can be used as the base class for custom implementations.Methods in tools.jackson.databind.deser with parameters of type ValueInstantiatorsModifier and TypeMethodDescriptionfinal DeserializerFactoryBasicDeserializerFactory.withValueInstantiators(ValueInstantiators instantiators) Convenience method for creating a new factory instance with additionalValueInstantiators.abstract DeserializerFactoryDeserializerFactory.withValueInstantiators(ValueInstantiators instantiators) Convenience method for creating a new factory instance with additionalValueInstantiators. -
Uses of ValueInstantiators in tools.jackson.databind.module
Classes in tools.jackson.databind.module that implement ValueInstantiators