Uses of Class
com.fasterxml.jackson.databind.ser.DefaultSerializerProvider
-
Packages that use DefaultSerializerProvider 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.ser Contains implementation classes of serialization part of data binding. -
-
Uses of DefaultSerializerProvider in com.fasterxml.jackson.databind
Fields in com.fasterxml.jackson.databind declared as DefaultSerializerProvider Modifier and Type Field Description protected DefaultSerializerProviderSequenceWriter. _providerprotected DefaultSerializerProviderObjectMapper. _serializerProviderObject that manages access to serializers used for serialization, including caching.protected DefaultSerializerProviderObjectWriter. _serializerProviderMethods in com.fasterxml.jackson.databind that return DefaultSerializerProvider Modifier and Type Method Description protected DefaultSerializerProviderObjectMapper. _serializerProvider(SerializationConfig config)Overridable helper method used for constructingSerializerProviderto use for serialization.protected DefaultSerializerProviderObjectWriter. _serializerProvider()Overridable helper method used for constructingSerializerProviderto use for serialization.Methods in com.fasterxml.jackson.databind with parameters of type DefaultSerializerProvider Modifier and Type Method Description voidObjectWriter.Prefetch. serialize(com.fasterxml.jackson.core.JsonGenerator gen, Object value, DefaultSerializerProvider prov)ObjectMapperObjectMapper. setSerializerProvider(DefaultSerializerProvider p)Method for setting "blueprint"SerializerProviderinstance to use as the base for actual provider instances to use for handling caching ofJsonSerializerinstances.Constructors in com.fasterxml.jackson.databind with parameters of type DefaultSerializerProvider Constructor Description ObjectMapper(com.fasterxml.jackson.core.JsonFactory jf, DefaultSerializerProvider sp, DefaultDeserializationContext dc)Constructs instance that uses specifiedJsonFactoryfor constructing necessaryJsonParsers and/orJsonGenerators, and uses given providers for accessing serializers and deserializers.SequenceWriter(DefaultSerializerProvider prov, com.fasterxml.jackson.core.JsonGenerator gen, boolean closeGenerator, ObjectWriter.Prefetch prefetch) -
Uses of DefaultSerializerProvider in com.fasterxml.jackson.databind.ser
Subclasses of DefaultSerializerProvider in com.fasterxml.jackson.databind.ser Modifier and Type Class Description static classDefaultSerializerProvider.ImplConcrete implementation that defines factory method(s), defined as final.Methods in com.fasterxml.jackson.databind.ser that return DefaultSerializerProvider Modifier and Type Method Description DefaultSerializerProviderDefaultSerializerProvider. copy()Method needed to ensure thatObjectMapper.copy()will work properly; specifically, that caches are cleared, but settings will otherwise remain identical; and that no sharing of state occurs.DefaultSerializerProviderDefaultSerializerProvider.Impl. copy()abstract DefaultSerializerProviderDefaultSerializerProvider. createInstance(SerializationConfig config, SerializerFactory jsf)Method that sub-classes need to implement: used to create a non-blueprint instances from the blueprint.Constructors in com.fasterxml.jackson.databind.ser with parameters of type DefaultSerializerProvider Constructor Description DefaultSerializerProvider(DefaultSerializerProvider src)
-