Uses of Interface
org.codehaus.jackson.map.deser.ValueInstantiators
-
Packages that use ValueInstantiators Package Description org.codehaus.jackson.map 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 viaObjectMapper
class, as well as convenience methods included inJsonParser
org.codehaus.jackson.map.deser Contains implementation classes of deserialization part of data binding.org.codehaus.jackson.map.module Package that contains classes and interfaces to help implement custom extensionModule
s (which are registered usingObjectMapper.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 ValueInstantiators Modifier and Type Method Description abstract java.lang.Iterable<ValueInstantiators>
DeserializerFactory.Config. valueInstantiators()
Methods in org.codehaus.jackson.map with parameters of type ValueInstantiators Modifier and Type Method Description void
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.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 ValueInstantiators Modifier and Type Class Description static class
ValueInstantiators.Base
Basic "NOP" implementation that can be used as the base class for custom implementations.Fields in org.codehaus.jackson.map.deser declared as ValueInstantiators Modifier and Type Field Description protected 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 ValueInstantiators[]
BeanDeserializerFactory.ConfigImpl. NO_VALUE_INSTANTIATORS
Methods in org.codehaus.jackson.map.deser that return types with arguments of type ValueInstantiators Modifier and Type Method Description java.lang.Iterable<ValueInstantiators>
BeanDeserializerFactory.ConfigImpl. valueInstantiators()
Methods in org.codehaus.jackson.map.deser with parameters of type ValueInstantiators Modifier and Type Method Description DeserializerFactory.Config
BeanDeserializerFactory.ConfigImpl. withValueInstantiators(ValueInstantiators instantiators)
DeserializerProvider
StdDeserializerProvider. withValueInstantiators(ValueInstantiators instantiators)
Constructors in org.codehaus.jackson.map.deser with parameters of type ValueInstantiators Constructor Description 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 Modifier and Type Class Description class
SimpleValueInstantiators
-