Uses of Interface
org.codehaus.jackson.map.deser.ValueInstantiators
Packages that use ValueInstantiators
Package
Description
Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper
class, as well
as convenience methods included in
JsonParser
Contains implementation classes of deserialization part of
data binding.
Package that contains classes and interfaces to help implement
custom extension
Module
s
(which are registered using
ObjectMapper.registerModule(org.codehaus.jackson.map.Module)
.-
Uses of ValueInstantiators in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map that return types with arguments of type ValueInstantiatorsModifier and TypeMethodDescriptionabstract Iterable
<ValueInstantiators> DeserializerFactory.Config.valueInstantiators()
Methods in org.codehaus.jackson.map with parameters of type ValueInstantiatorsModifier and TypeMethodDescriptionvoid
Module.SetupContext.addValueInstantiators
(ValueInstantiators instantiators) Method that module can use to register additionalValueInstantiator
s, by addingValueInstantiators
object that gets called when instantatiator is needed by a deserializer.abstract DeserializerFactory.Config
DeserializerFactory.Config.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.final DeserializerFactory
DeserializerFactory.withValueInstantiators
(ValueInstantiators instantiators) Convenience method for creating a new factory instance with additionalValueInstantiators
.abstract DeserializerProvider
DeserializerProvider.withValueInstantiators
(ValueInstantiators instantiators) Method that will construct a new instance with specified additional value instantiators (i.e. -
Uses of ValueInstantiators in org.codehaus.jackson.map.deser
Classes in org.codehaus.jackson.map.deser that implement ValueInstantiatorsModifier and TypeClassDescriptionstatic class
Basic "NOP" implementation that can be used as the base class for custom implementations.Fields in org.codehaus.jackson.map.deser declared as ValueInstantiatorsModifier and TypeFieldDescriptionprotected final ValueInstantiators[]
BeanDeserializerFactory.ConfigImpl._valueInstantiators
List 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[]
BeanDeserializerFactory.ConfigImpl.NO_VALUE_INSTANTIATORS
Methods in org.codehaus.jackson.map.deser that return types with arguments of type ValueInstantiatorsMethods in org.codehaus.jackson.map.deser with parameters of type ValueInstantiatorsModifier and TypeMethodDescriptionBeanDeserializerFactory.ConfigImpl.withValueInstantiators
(ValueInstantiators instantiators) StdDeserializerProvider.withValueInstantiators
(ValueInstantiators instantiators) Constructors in org.codehaus.jackson.map.deser with parameters of type ValueInstantiatorsModifierConstructorDescriptionprotected
ConfigImpl
(Deserializers[] allAdditionalDeserializers, KeyDeserializers[] allAdditionalKeyDeserializers, BeanDeserializerModifier[] modifiers, AbstractTypeResolver[] atr, ValueInstantiators[] vi) Copy-constructor that will create an instance that contains defined set of additional deserializer providers. -
Uses of ValueInstantiators in org.codehaus.jackson.map.module
Classes in org.codehaus.jackson.map.module that implement ValueInstantiators