|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ValueInstantiators | |
---|---|
com.fasterxml.jackson.databind | 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 |
com.fasterxml.jackson.databind.cfg | Package that contains most of configuration-related classes;
exception being couple of most-commonly used configuration
things (like Feature enumerations) that are at the
main level (com.fasterxml.jackson.databind ). |
com.fasterxml.jackson.databind.deser | Contains implementation classes of deserialization part of data binding. |
com.fasterxml.jackson.databind.module | Package that contains classes and interfaces to help implement
custom extension Module s
(which are registered using
ObjectMapper.registerModule(com.fasterxml.jackson.databind.Module) . |
Uses of ValueInstantiators in com.fasterxml.jackson.databind |
---|
Methods in com.fasterxml.jackson.databind with parameters of type ValueInstantiators | |
---|---|
void |
Module.SetupContext.addValueInstantiators(ValueInstantiators instantiators)
Method that module can use to register additional ValueInstantiator s,
by adding ValueInstantiators object that gets called when
instantatiator is needed by a deserializer. |
Uses of ValueInstantiators in com.fasterxml.jackson.databind.cfg |
---|
Fields in com.fasterxml.jackson.databind.cfg declared as ValueInstantiators | |
---|---|
protected ValueInstantiators[] |
DeserializerFactoryConfig._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[] |
DeserializerFactoryConfig.NO_VALUE_INSTANTIATORS
|
Methods in com.fasterxml.jackson.databind.cfg that return types with arguments of type ValueInstantiators | |
---|---|
Iterable<ValueInstantiators> |
DeserializerFactoryConfig.valueInstantiators()
|
Methods in com.fasterxml.jackson.databind.cfg with parameters of type ValueInstantiators | |
---|---|
DeserializerFactoryConfig |
DeserializerFactoryConfig.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. |
Constructors in com.fasterxml.jackson.databind.cfg with parameters of type ValueInstantiators | |
---|---|
DeserializerFactoryConfig(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 com.fasterxml.jackson.databind.deser |
---|
Classes in com.fasterxml.jackson.databind.deser that implement ValueInstantiators | |
---|---|
static class |
ValueInstantiators.Base
Basic "NOP" implementation that can be used as the base class for custom implementations. |
Methods in com.fasterxml.jackson.databind.deser with parameters of type ValueInstantiators | |
---|---|
abstract DeserializerFactory |
DeserializerFactory.withValueInstantiators(ValueInstantiators instantiators)
Convenience method for creating a new factory instance with additional ValueInstantiators . |
DeserializerFactory |
BasicDeserializerFactory.withValueInstantiators(ValueInstantiators instantiators)
Convenience method for creating a new factory instance with additional ValueInstantiators . |
Uses of ValueInstantiators in com.fasterxml.jackson.databind.module |
---|
Classes in com.fasterxml.jackson.databind.module that implement ValueInstantiators | |
---|---|
class |
SimpleValueInstantiators
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |