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
JsonParserContains implementation classes of deserialization part of
data binding.
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 ValueInstantiatorsModifier and TypeMethodDescriptionabstract Iterable<ValueInstantiators> DeserializerFactory.Config.valueInstantiators()Methods in org.codehaus.jackson.map with parameters of type ValueInstantiatorsModifier and TypeMethodDescriptionvoidModule.SetupContext.addValueInstantiators(ValueInstantiators instantiators) Method that module can use to register additionalValueInstantiators, by addingValueInstantiatorsobject that gets called when instantatiator is needed by a deserializer.abstract DeserializerFactory.ConfigDeserializerFactory.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 DeserializerFactoryDeserializerFactory.withValueInstantiators(ValueInstantiators instantiators) Convenience method for creating a new factory instance with additionalValueInstantiators.abstract DeserializerProviderDeserializerProvider.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 classBasic "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._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[]BeanDeserializerFactory.ConfigImpl.NO_VALUE_INSTANTIATORSMethods 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 ValueInstantiatorsModifierConstructorDescriptionprotectedConfigImpl(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