Uses of Class
tools.jackson.databind.cfg.SerializerFactoryConfig
Packages that use SerializerFactoryConfig
Package
Description
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 (
tools.jackson.databind).Contains implementation classes of serialization part of
data binding.
-
Uses of SerializerFactoryConfig in tools.jackson.databind.cfg
Methods in tools.jackson.databind.cfg that return SerializerFactoryConfigModifier and TypeMethodDescriptionSerializerFactoryConfig.withAdditionalKeySerializers(Serializers additional) SerializerFactoryConfig.withAdditionalSerializers(Serializers additional) SerializerFactoryConfig.withNullKeySerializer(ValueSerializer<?> nks) SerializerFactoryConfig.withNullValueSerializer(ValueSerializer<?> nvs) SerializerFactoryConfig.withSerializerModifier(ValueSerializerModifier modifier) -
Uses of SerializerFactoryConfig in tools.jackson.databind.ser
Fields in tools.jackson.databind.ser declared as SerializerFactoryConfigModifier and TypeFieldDescriptionprotected final SerializerFactoryConfigBasicSerializerFactory._factoryConfigConfiguration settings for this factory; immutable instance (just like this factory), new version created via copy-constructor (fluent-style)Methods in tools.jackson.databind.ser with parameters of type SerializerFactoryConfigModifier and TypeMethodDescriptionprotected abstract SerializerFactoryBasicSerializerFactory.withConfig(SerializerFactoryConfig config) Method used for creating a new instance of this factory, but with different configuration.BeanSerializerFactory.withConfig(SerializerFactoryConfig config) Method used by module registration functionality, to attach additional serializer providers into this serializer factory.Constructors in tools.jackson.databind.ser with parameters of type SerializerFactoryConfigModifierConstructorDescriptionprotectedWe will provide default constructor to allow sub-classing, but make it protected so that no non-singleton instances of the class will be instantiated.protectedConstructor for creating instances with specified configuration.