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 viaObjectMapperclass, as well as convenience methods included inJsonParserorg.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 extensionModules (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 Iterable<ValueInstantiators>DeserializerFactory.Config. valueInstantiators()Methods in org.codehaus.jackson.map with parameters of type ValueInstantiators Modifier and Type Method Description voidModule.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.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 ValueInstantiators Modifier and Type Class Description static classValueInstantiators.BaseBasic "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. _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 ValueInstantiators[]BeanDeserializerFactory.ConfigImpl. NO_VALUE_INSTANTIATORSMethods in org.codehaus.jackson.map.deser that return types with arguments of type ValueInstantiators Modifier and Type Method Description Iterable<ValueInstantiators>BeanDeserializerFactory.ConfigImpl. valueInstantiators()Methods in org.codehaus.jackson.map.deser with parameters of type ValueInstantiators Modifier and Type Method Description DeserializerFactory.ConfigBeanDeserializerFactory.ConfigImpl. withValueInstantiators(ValueInstantiators instantiators)DeserializerProviderStdDeserializerProvider. 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 classSimpleValueInstantiators
-