Uses of Interface
org.codehaus.jackson.map.deser.ValueInstantiators

Packages that use ValueInstantiators
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 via ObjectMapper class, as well as convenience methods included in JsonParser 
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 extension Modules (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 ValueInstantiators
abstract  Iterable<ValueInstantiators> DeserializerFactory.Config.valueInstantiators()
           
 

Methods in org.codehaus.jackson.map with parameters of type ValueInstantiators
 void Module.SetupContext.addValueInstantiators(ValueInstantiators instantiators)
          Method that module can use to register additional ValueInstantiators, by adding ValueInstantiators object that gets called when instantatiator is needed by a deserializer.
 DeserializerFactory DeserializerFactory.withValueInstantiators(ValueInstantiators instantiators)
          Convenience method for creating a new factory instance with additional ValueInstantiators.
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.
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
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
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
 Iterable<ValueInstantiators> BeanDeserializerFactory.ConfigImpl.valueInstantiators()
           
 

Methods in org.codehaus.jackson.map.deser with parameters of type ValueInstantiators
 DeserializerFactory.Config BeanDeserializerFactory.ConfigImpl.withValueInstantiators(ValueInstantiators instantiators)
           
 DeserializerProvider StdDeserializerProvider.withValueInstantiators(ValueInstantiators instantiators)
           
 

Constructors in org.codehaus.jackson.map.deser with parameters of type ValueInstantiators
BeanDeserializerFactory.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
 class SimpleValueInstantiators