Package | Description |
---|---|
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.ser |
Contains implementation classes of serialization part of
data binding.
|
Modifier and Type | Method and Description |
---|---|
SerializerFactoryConfig |
SerializerFactoryConfig.withAdditionalKeySerializers(Serializers additional) |
SerializerFactoryConfig |
SerializerFactoryConfig.withAdditionalSerializers(Serializers additional) |
SerializerFactoryConfig |
SerializerFactoryConfig.withSerializerModifier(BeanSerializerModifier modifier) |
Modifier and Type | Field and Description |
---|---|
protected SerializerFactoryConfig |
BasicSerializerFactory._factoryConfig
Configuration settings for this factory; immutable instance (just like this
factory), new version created via copy-constructor (fluent-style)
|
Modifier and Type | Method and Description |
---|---|
SerializerFactoryConfig |
BasicSerializerFactory.getFactoryConfig()
Method for getting current
SerializerFactoryConfig . |
Modifier and Type | Method and Description |
---|---|
SerializerFactory |
BeanSerializerFactory.withConfig(SerializerFactoryConfig config)
Method used by module registration functionality, to attach additional
serializer providers into this serializer factory.
|
abstract SerializerFactory |
BasicSerializerFactory.withConfig(SerializerFactoryConfig config)
Method used for creating a new instance of this factory, but with different
configuration.
|
Constructor and Description |
---|
BasicSerializerFactory(SerializerFactoryConfig config)
We will provide default constructor to allow sub-classing,
but make it protected so that no non-singleton instances of
the class will be instantiated.
|
BeanSerializerFactory(SerializerFactoryConfig config)
Constructor for creating instances with specified configuration.
|
Copyright © 2014-2015 FasterXML. All Rights Reserved.