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 ). |
Modifier and Type | Field and Description |
---|---|
protected static BaseSettings |
ObjectMapper.DEFAULT_BASE
Base settings contain defaults used for all
ObjectMapper
instances. |
Modifier and Type | Method and Description |
---|---|
protected BaseSettings |
DeserializationConfig.getBaseSettings() |
Modifier and Type | Method and Description |
---|---|
private DeserializationConfig |
DeserializationConfig._withBase(BaseSettings newBase) |
private SerializationConfig |
SerializationConfig._withBase(BaseSettings newBase) |
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,
BaseSettings base) |
SerializationConfig(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames)
Constructor used by ObjectMapper to create default configuration object instance.
|
SerializationConfig(SerializationConfig src,
BaseSettings base) |
Modifier and Type | Field and Description |
---|---|
protected BaseSettings |
MapperConfig._base
Immutable container object for simple configuration settings.
|
Modifier and Type | Method and Description |
---|---|
BaseSettings |
BaseSettings.with(com.fasterxml.jackson.core.Base64Variant base64) |
BaseSettings |
BaseSettings.with(java.util.Locale l) |
BaseSettings |
BaseSettings.with(java.util.TimeZone tz)
Fluent factory for constructing a new instance that uses specified TimeZone.
|
BaseSettings |
BaseSettings.withAnnotationIntrospector(AnnotationIntrospector ai) |
BaseSettings |
BaseSettings.withAppendedAnnotationIntrospector(AnnotationIntrospector ai) |
BaseSettings |
BaseSettings.withClassIntrospector(ClassIntrospector ci) |
BaseSettings |
BaseSettings.withDateFormat(java.text.DateFormat df) |
BaseSettings |
BaseSettings.withHandlerInstantiator(HandlerInstantiator hi) |
BaseSettings |
BaseSettings.withInsertedAnnotationIntrospector(AnnotationIntrospector ai) |
BaseSettings |
BaseSettings.withPropertyNamingStrategy(PropertyNamingStrategy pns) |
BaseSettings |
BaseSettings.withTypeFactory(TypeFactory tf) |
BaseSettings |
BaseSettings.withTypeResolverBuilder(TypeResolverBuilder<?> typer) |
BaseSettings |
BaseSettings.withVisibility(com.fasterxml.jackson.annotation.PropertyAccessor forMethod,
com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility visibility) |
BaseSettings |
BaseSettings.withVisibilityChecker(VisibilityChecker<?> vc) |
Constructor and Description |
---|
MapperConfig(BaseSettings base,
int mapperFeatures) |
MapperConfig(MapperConfig<T> src,
BaseSettings base) |
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,
BaseSettings base) |