Uses of Class
com.fasterxml.jackson.databind.ser.BeanSerializerBuilder
-
Packages that use BeanSerializerBuilder Package Description com.fasterxml.jackson.databind.ser Contains implementation classes of serialization part of data binding.com.fasterxml.jackson.databind.ser.std -
-
Uses of BeanSerializerBuilder in com.fasterxml.jackson.databind.ser
Methods in com.fasterxml.jackson.databind.ser that return BeanSerializerBuilder Modifier and Type Method Description protected BeanSerializerBuilder
BeanSerializerFactory. constructBeanSerializerBuilder(BeanDescription beanDesc)
BeanSerializerBuilder
BeanSerializerModifier. updateBuilder(SerializationConfig config, BeanDescription beanDesc, BeanSerializerBuilder builder)
Method called byBeanSerializerFactory
after collecting all information regarding POJO to serialize and updating builder with it, but before constructing serializer.Methods in com.fasterxml.jackson.databind.ser with parameters of type BeanSerializerBuilder Modifier and Type Method Description static BeanSerializer
BeanSerializer. createDummy(JavaType forType, BeanSerializerBuilder builder)
Method for constructing dummy bean serializer; one that never outputs any propertiesprotected java.util.List<BeanPropertyWriter>
BeanSerializerFactory. findBeanProperties(SerializerProvider prov, BeanDescription beanDesc, BeanSerializerBuilder builder)
Method used to collect all actual serializable properties.protected void
BeanSerializerFactory. processViews(SerializationConfig config, BeanSerializerBuilder builder)
Method called to handle view information for constructed serializer, based on bean property writers.protected java.util.List<BeanPropertyWriter>
BeanSerializerFactory. removeOverlappingTypeIds(SerializerProvider prov, BeanDescription beanDesc, BeanSerializerBuilder builder, java.util.List<BeanPropertyWriter> props)
Helper method called to ensure that we do not have "duplicate" type ids.BeanSerializerBuilder
BeanSerializerModifier. updateBuilder(SerializationConfig config, BeanDescription beanDesc, BeanSerializerBuilder builder)
Method called byBeanSerializerFactory
after collecting all information regarding POJO to serialize and updating builder with it, but before constructing serializer.Constructors in com.fasterxml.jackson.databind.ser with parameters of type BeanSerializerBuilder Constructor Description BeanSerializer(JavaType type, BeanSerializerBuilder builder, BeanPropertyWriter[] properties, BeanPropertyWriter[] filteredProperties)
BeanSerializerBuilder(BeanSerializerBuilder src)
Copy-constructor that may be used for sub-classing -
Uses of BeanSerializerBuilder in com.fasterxml.jackson.databind.ser.std
Constructors in com.fasterxml.jackson.databind.ser.std with parameters of type BeanSerializerBuilder Constructor Description BeanSerializerBase(JavaType type, BeanSerializerBuilder builder, BeanPropertyWriter[] properties, BeanPropertyWriter[] filteredProperties)
Constructor used byBeanSerializerBuilder
to create an instance
-