Uses of Class
com.fasterxml.jackson.databind.ser.std.BeanSerializerBase
Packages that use BeanSerializerBase
Package
Description
Contains implementation classes of serialization part of
data binding.
Contains implementation classes of serialization part of
data binding.
-
Uses of BeanSerializerBase in com.fasterxml.jackson.databind.ser
Subclasses of BeanSerializerBase in com.fasterxml.jackson.databind.serModifier and TypeClassDescriptionclassSerializer class that can serialize Java objects that map to JSON Object output.Methods in com.fasterxml.jackson.databind.ser that return BeanSerializerBaseModifier and TypeMethodDescriptionprotected BeanSerializerBaseBeanSerializer.asArraySerializer()Implementation has to check whether as-array serialization is possible reliably; if (and only if) so, will construct aBeanAsArraySerializer, otherwise will return this serializer as is.protected BeanSerializerBaseBeanSerializer.withByNameInclusion(Set<String> toIgnore, Set<String> toInclude) BeanSerializer.withFilterId(Object filterId) BeanSerializer.withObjectIdWriter(ObjectIdWriter objectIdWriter) protected BeanSerializerBaseBeanSerializer.withProperties(BeanPropertyWriter[] properties, BeanPropertyWriter[] filteredProperties) Constructors in com.fasterxml.jackson.databind.ser with parameters of type BeanSerializerBaseModifierConstructorDescriptionprotectedAlternate copy constructor that can be used to construct standardBeanSerializerpassing an instance of "compatible enough" source serializer.protectedBeanSerializer(BeanSerializerBase src, BeanPropertyWriter[] properties, BeanPropertyWriter[] filteredProperties) protectedBeanSerializer(BeanSerializerBase src, ObjectIdWriter objectIdWriter) protectedBeanSerializer(BeanSerializerBase src, ObjectIdWriter objectIdWriter, Object filterId) protectedBeanSerializer(BeanSerializerBase src, Set<String> toIgnore, Set<String> toInclude) -
Uses of BeanSerializerBase in com.fasterxml.jackson.databind.ser.impl
Subclasses of BeanSerializerBase in com.fasterxml.jackson.databind.ser.implModifier and TypeClassDescriptionclassSpecialized POJO serializer that differs fromBeanSerializerin that instead of producing a JSON Object it will output a JSON Array, omitting field names, and serializing values in specified serialization order.classFields in com.fasterxml.jackson.databind.ser.impl declared as BeanSerializerBaseModifier and TypeFieldDescriptionprotected final BeanSerializerBaseBeanAsArraySerializer._defaultSerializerSerializer that would produce JSON Object version; used in cases where array output cannot be used.Methods in com.fasterxml.jackson.databind.ser.impl that return BeanSerializerBaseModifier and TypeMethodDescriptionprotected BeanSerializerBaseBeanAsArraySerializer.asArraySerializer()protected BeanSerializerBaseUnwrappingBeanSerializer.asArraySerializer()JSON Array output cannot be done if unwrapping operation is requested; so implementation will simply return 'this'.protected BeanSerializerBaseUnwrappingBeanSerializer.withByNameInclusion(Set<String> toIgnore, Set<String> toInclude) BeanAsArraySerializer.withFilterId(Object filterId) UnwrappingBeanSerializer.withFilterId(Object filterId) BeanAsArraySerializer.withObjectIdWriter(ObjectIdWriter objectIdWriter) UnwrappingBeanSerializer.withObjectIdWriter(ObjectIdWriter objectIdWriter) protected BeanSerializerBaseBeanAsArraySerializer.withProperties(BeanPropertyWriter[] properties, BeanPropertyWriter[] filteredProperties) protected BeanSerializerBaseUnwrappingBeanSerializer.withProperties(BeanPropertyWriter[] properties, BeanPropertyWriter[] filteredProperties) Constructors in com.fasterxml.jackson.databind.ser.impl with parameters of type BeanSerializerBaseModifierConstructorDescriptionprotectedBeanAsArraySerializer(BeanSerializerBase src, ObjectIdWriter oiw, Object filterId) protectedBeanAsArraySerializer(BeanSerializerBase src, Set<String> toIgnore) protectedBeanAsArraySerializer(BeanSerializerBase src, Set<String> toIgnore, Set<String> toInclude) UnwrappingBeanSerializer(BeanSerializerBase src, NameTransformer transformer) Constructor used for creating unwrapping instance of a standardBeanSerializer -
Uses of BeanSerializerBase in com.fasterxml.jackson.databind.ser.std
Methods in com.fasterxml.jackson.databind.ser.std that return BeanSerializerBaseModifier and TypeMethodDescriptionprotected abstract BeanSerializerBaseBeanSerializerBase.asArraySerializer()Mutant factory for creating a variant that output POJO as a JSON Array.protected abstract BeanSerializerBaseBeanSerializerBase.withByNameInclusion(Set<String> toIgnore, Set<String> toInclude) Mutant factory used for creating a new instance with additional set of properties to ignore or include (from properties this instance otherwise has)abstract BeanSerializerBaseBeanSerializerBase.withFilterId(Object filterId) Mutant factory used for creating a new instance with different filter id (used withJsonFilterannotation)protected BeanSerializerBaseBeanSerializerBase.withIgnorals(String[] toIgnore) Deprecated.since 2.8protected BeanSerializerBaseBeanSerializerBase.withIgnorals(Set<String> toIgnore) Deprecated.Since 2.12abstract BeanSerializerBaseBeanSerializerBase.withObjectIdWriter(ObjectIdWriter objectIdWriter) Mutant factory used for creating a new instance with differentObjectIdWriter.protected abstract BeanSerializerBaseBeanSerializerBase.withProperties(BeanPropertyWriter[] properties, BeanPropertyWriter[] filteredProperties) Mutant factory used for creating a new instance with modified set of properties.Constructors in com.fasterxml.jackson.databind.ser.std with parameters of type BeanSerializerBaseModifierConstructorDescriptionprotectedCopy-constructor that is useful for sub-classes that just want to copy all super-class properties without modifications.protectedBeanSerializerBase(BeanSerializerBase src, BeanPropertyWriter[] properties, BeanPropertyWriter[] filteredProperties) protectedBeanSerializerBase(BeanSerializerBase src, ObjectIdWriter objectIdWriter) protectedBeanSerializerBase(BeanSerializerBase src, ObjectIdWriter objectIdWriter, Object filterId) protectedBeanSerializerBase(BeanSerializerBase src, NameTransformer unwrapper) Copy-constructor that will also rename properties with given prefix (if it's non-empty)protectedBeanSerializerBase(BeanSerializerBase src, String[] toIgnore) Deprecated.protectedBeanSerializerBase(BeanSerializerBase src, Set<String> toIgnore) Deprecated.protectedBeanSerializerBase(BeanSerializerBase src, Set<String> toIgnore, Set<String> toInclude)