Module tools.jackson.databind
Package tools.jackson.databind.ser.bean
Class UnrolledBeanAsArraySerializer
java.lang.Object
tools.jackson.databind.ValueSerializer<T>
tools.jackson.databind.ser.std.StdSerializer<Object>
tools.jackson.databind.ser.bean.BeanSerializerBase
tools.jackson.databind.ser.bean.UnrolledBeanAsArraySerializer
- All Implemented Interfaces:
JsonFormatVisitable
Specialization of
BeanAsArraySerializer, optimized for handling
small number of properties where calls to property handlers can be
"unrolled" by eliminated looping. This can help optimize execution
significantly for some backends.-
Nested Class Summary
Nested classes/interfaces inherited from class tools.jackson.databind.ValueSerializer
ValueSerializer.None -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final BeanSerializerBaseSerializer that would produce JSON Object version; used in cases where array output cannot be used.protected BeanPropertyWriterprotected BeanPropertyWriterprotected BeanPropertyWriterprotected BeanPropertyWriterprotected BeanPropertyWriterprotected BeanPropertyWriterprotected final intstatic final intFields inherited from class tools.jackson.databind.ser.bean.BeanSerializerBase
_beanType, _filteredProps, _objectIdWriter, _propertyFilterId, _props, _serializationShape, _typeId, NAME_FOR_OBJECT_REF, NO_PROPSFields inherited from class tools.jackson.databind.ser.std.StdSerializer
_handledType -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedUnrolledBeanAsArraySerializer(BeanSerializerBase src, Set<String> toIgnore, Set<String> toInclude) -
Method Summary
Modifier and TypeMethodDescriptionprotected BeanSerializerBaseMutant factory for creating a variant that output POJO as a JSON Array.booleanAccessor for checking whether this serializer is an "unwrapping" serializer; this is necessary to know since it may also require caller to suppress writing of the leading property name.voidresolve(SerializationContext provider) We need to resolve dependant serializers here to be able to properly handle cyclic type references.final voidserialize(Object bean, JsonGenerator gen, SerializationContext provider) Main serialization method that will delegate actual output to configuredBeanPropertyWriterinstances.protected final voidserializeNonFiltered(Object bean, JsonGenerator gen, SerializationContext provider) voidserializeWithType(Object bean, JsonGenerator gen, SerializationContext ctxt, TypeSerializer typeSer) Method that can be called to ask implementation to serialize values of type this serializer handles, using specified type serializer for embedding necessary type information.Factory method that will construct optimized instance if all the constraints are obeyed; or, if not, return `null` to indicate that instance cannot be created.unwrappingSerializer(NameTransformer transformer) Lets force sub-classes to implement this, to avoid accidental missing of handling...protected UnrolledBeanAsArraySerializerwithByNameInclusion(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)withFilterId(Object filterId) Mutant factory used for creating a new instance with different filter id (used withJsonFilterannotation)withObjectIdWriter(ObjectIdWriter objectIdWriter) Mutant factory used for creating a new instance with differentObjectIdWriter.protected BeanSerializerBasewithProperties(BeanPropertyWriter[] properties, BeanPropertyWriter[] filteredProperties) Mutant factory used for creating a new instance with modified set of propertiesMethods inherited from class tools.jackson.databind.ser.bean.BeanSerializerBase
_serializeObjectId, _serializeProperties, _serializePropertiesFiltered, _serializePropertiesMaybeView, _serializePropertiesNoView, _serializeWithObjectId, _serializeWithObjectId, _typeIdDef, acceptJsonFormatVisitor, canCreateArraySerializer, createContextual, findConvertingSerializer, getFilterId, hasViewProperties, properties, propertyCount, toString, usesObjectIdMethods inherited from class tools.jackson.databind.ser.std.StdSerializer
_neitherNull, _nonEmpty, _wrapIOFailure, acceptJsonFormatVisitorForBinary, createSchemaNode, createSchemaNode, findAnnotatedContentSerializer, findContextualConvertingSerializer, findFormatFeature, findFormatOverrides, findIncludeOverrides, findPropertyFilter, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrowMethods inherited from class tools.jackson.databind.ValueSerializer
getDelegatee, isEmpty, replaceDelegatee, withFormatOverrides, withIgnoredProperties
-
Field Details
-
_defaultSerializer
Serializer that would produce JSON Object version; used in cases where array output cannot be used. -
MAX_PROPS
public static final int MAX_PROPS- See Also:
-
_propCount
protected final int _propCount -
_prop1
-
_prop2
-
_prop3
-
_prop4
-
_prop5
-
_prop6
-
-
Constructor Details
-
UnrolledBeanAsArraySerializer
-
UnrolledBeanAsArraySerializer
protected UnrolledBeanAsArraySerializer(BeanSerializerBase src, Set<String> toIgnore, Set<String> toInclude)
-
-
Method Details
-
tryConstruct
Factory method that will construct optimized instance if all the constraints are obeyed; or, if not, return `null` to indicate that instance cannot be created. -
unwrappingSerializer
Description copied from class:BeanSerializerBaseLets force sub-classes to implement this, to avoid accidental missing of handling...- Specified by:
unwrappingSerializerin classBeanSerializerBase- Parameters:
transformer- Name transformation to use to convert between names of unwrapper properties
-
isUnwrappingSerializer
public boolean isUnwrappingSerializer()Description copied from class:ValueSerializerAccessor for checking whether this serializer is an "unwrapping" serializer; this is necessary to know since it may also require caller to suppress writing of the leading property name.- Overrides:
isUnwrappingSerializerin classValueSerializer<Object>
-
withObjectIdWriter
Description copied from class:BeanSerializerBaseMutant factory used for creating a new instance with differentObjectIdWriter.- Specified by:
withObjectIdWriterin classBeanSerializerBase
-
withFilterId
Description copied from class:BeanSerializerBaseMutant factory used for creating a new instance with different filter id (used withJsonFilterannotation)- Specified by:
withFilterIdin classBeanSerializerBase
-
withByNameInclusion
protected UnrolledBeanAsArraySerializer withByNameInclusion(Set<String> toIgnore, Set<String> toInclude) Description copied from class:BeanSerializerBaseMutant factory used for creating a new instance with additional set of properties to ignore or include (from properties this instance otherwise has)- Specified by:
withByNameInclusionin classBeanSerializerBase
-
withProperties
protected BeanSerializerBase withProperties(BeanPropertyWriter[] properties, BeanPropertyWriter[] filteredProperties) Description copied from class:BeanSerializerBaseMutant factory used for creating a new instance with modified set of properties- Specified by:
withPropertiesin classBeanSerializerBase
-
asArraySerializer
Description copied from class:BeanSerializerBaseMutant factory for creating a variant that output POJO as a JSON Array. Implementations may ignore this request if output as array is not possible (either at all, or reliably).- Specified by:
asArraySerializerin classBeanSerializerBase
-
resolve
Description copied from class:BeanSerializerBaseWe need to resolve dependant serializers here to be able to properly handle cyclic type references.- Overrides:
resolvein classBeanSerializerBase- Parameters:
provider- Currently active serialization context.
-
serializeWithType
public void serializeWithType(Object bean, JsonGenerator gen, SerializationContext ctxt, TypeSerializer typeSer) throws JacksonException Description copied from class:ValueSerializerMethod that can be called to ask implementation to serialize values of type this serializer handles, using specified type serializer for embedding necessary type information.Default implementation will throw
UnsupportedOperationExceptionto indicate that proper type handling needs to be implemented.For simple datatypes written as a single scalar value (JSON String, Number, Boolean), implementation would look like:
// note: method to call depends on whether this type is serialized as JSON scalar, object or Array! typeSer.writeTypePrefixForScalar(value, gen); serialize(value, gen, provider); typeSer.writeTypeSuffixForScalar(value, gen);
and implementations for type serialized as JSON Arrays or Objects would differ slightly, asSTART-ARRAY/END-ARRAYandSTART-OBJECT/END-OBJECTpairs need to be properly handled with respect to serializing of contents.- Overrides:
serializeWithTypein classBeanSerializerBase- Parameters:
bean- Value to serialize; can not be null.gen- Generator used to output resulting Json contentctxt- Context that can be used to get serializers for serializing Objects value contains, if any.typeSer- Type serializer to use for including type information- Throws:
JacksonException
-
serialize
public final void serialize(Object bean, JsonGenerator gen, SerializationContext provider) throws JacksonException Main serialization method that will delegate actual output to configuredBeanPropertyWriterinstances.- Specified by:
serializein classBeanSerializerBase- Parameters:
bean- Value to serialize; can not be null.gen- Generator used to output resulting Json contentprovider- Context that can be used to get serializers for serializing Objects value contains, if any.- Throws:
JacksonException
-
serializeNonFiltered
protected final void serializeNonFiltered(Object bean, JsonGenerator gen, SerializationContext provider) throws JacksonException - Throws:
JacksonException
-