Uses of Class
com.fasterxml.jackson.databind.cfg.BaseSettings
-
Packages that use BaseSettings 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
). -
-
Uses of BaseSettings in com.fasterxml.jackson.databind
Fields in com.fasterxml.jackson.databind declared as BaseSettings Modifier and Type Field Description protected static BaseSettings
ObjectMapper. DEFAULT_BASE
Base settings contain defaults used for allObjectMapper
instances.Methods in com.fasterxml.jackson.databind that return BaseSettings Modifier and Type Method Description protected BaseSettings
DeserializationConfig. getBaseSettings()
Methods in com.fasterxml.jackson.databind with parameters of type BaseSettings Modifier and Type Method Description protected DeserializationConfig
DeserializationConfig. _withBase(BaseSettings newBase)
protected SerializationConfig
SerializationConfig. _withBase(BaseSettings newBase)
Constructors in com.fasterxml.jackson.databind with parameters of type BaseSettings Constructor Description DeserializationConfig(BaseSettings base, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides)
Deprecated.DeserializationConfig(BaseSettings base, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides, CoercionConfigs coercionConfigs)
Constructor used by ObjectMapper to create default configuration object instance.SerializationConfig(BaseSettings base, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides)
Constructor used by ObjectMapper to create default configuration object instance. -
Uses of BaseSettings in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as BaseSettings Modifier and Type Field Description protected BaseSettings
MapperConfig. _base
Immutable container object for simple configuration settings.Methods in com.fasterxml.jackson.databind.cfg with parameters of type BaseSettings Modifier and Type Method Description protected abstract T
MapperConfigBase. _withBase(BaseSettings newBase)
Constructors in com.fasterxml.jackson.databind.cfg with parameters of type BaseSettings Constructor Description MapperConfig(BaseSettings base, int mapperFeatures)
MapperConfig(MapperConfig<T> src, BaseSettings base)
MapperConfigBase(BaseSettings base, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides)
Constructor used when creating a new instance (compared to that of creating fluent copies)MapperConfigBase(MapperConfigBase<CFG,T> src, BaseSettings base)
-