Package | Description |
---|---|
com.fasterxml.jackson.databind |
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode ), as well as
writing Java Objects and trees as JSON. |
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 ). |
Constructor and Description |
---|
DeserializationConfig(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames)
Constructor used by ObjectMapper to create default configuration object instance.
|
DeserializationConfig(DeserializationConfig src,
SimpleMixInResolver mixins,
RootNameLookup rootNames)
Copy-constructor used for making a copy to be used by new
ObjectMapper
or ObjectReader . |
SerializationConfig(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames)
Constructor used by ObjectMapper to create default configuration object instance.
|
SerializationConfig(SerializationConfig src,
SimpleMixInResolver mixins,
RootNameLookup rootNames)
Copy-constructor used for making a copy to be used by new
ObjectMapper
or ObjectReader . |
Modifier and Type | Field and Description |
---|---|
protected RootNameLookup |
MapperConfigBase._rootNames |
Constructor and Description |
---|
MapperConfigBase(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames)
Constructor used when creating a new instance (compared to
that of creating fluent copies)
|
MapperConfigBase(MapperConfigBase<CFG,T> src,
SimpleMixInResolver mixins,
RootNameLookup rootNames) |
Copyright © 2014–2015 FasterXML. All rights reserved.