Module tools.jackson.databind
Class AsWrapperTypeSerializer
java.lang.Object
tools.jackson.databind.jsontype.TypeSerializer
tools.jackson.databind.jsontype.impl.TypeSerializerBase
tools.jackson.databind.jsontype.impl.AsWrapperTypeSerializer
Type wrapper that tries to use an extra JSON Object, with a single
entry that has type name as key, to serialize type information.
If this is not possible (value is serialize as array or primitive),
will use
JsonTypeInfo.As.WRAPPER_ARRAY mechanism as fallback: that is,
just use a wrapping array with type information as the first element
and value as second.-
Field Summary
Fields inherited from class tools.jackson.databind.jsontype.impl.TypeSerializerBase
_idResolver, _property -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected String_validTypeId(String typeId) Helper method used to ensure that intended type id is output as something that is valid: currently only used to ensure that `null` output is converted to an empty String.protected final void_writeTypeId(JsonGenerator g, String typeId) forProperty(SerializationContext ctxt, BeanProperty prop) Method called to create contextual version, to be used for values of given property.Accessor for type information inclusion method that serializer uses; indicates how type information is embedded in resulting JSON.Methods inherited from class tools.jackson.databind.jsontype.impl.TypeSerializerBase
_generateTypeId, getPropertyName, getTypeIdResolver, handleMissingId, idFromValue, idFromValueAndType, writeTypePrefix, writeTypeSuffixMethods inherited from class tools.jackson.databind.jsontype.TypeSerializer
typeId, typeId, typeId
-
Constructor Details
-
AsWrapperTypeSerializer
-
-
Method Details
-
forProperty
Description copied from class:TypeSerializerMethod called to create contextual version, to be used for values of given property. This may be the type itself (as is the case for bean properties), or values contained (forCollectionorMapvalued properties).NOTE: since 3.0 has received context object as first argument.
- Specified by:
forPropertyin classTypeSerializer
-
getTypeInclusion
Description copied from class:TypeSerializerAccessor for type information inclusion method that serializer uses; indicates how type information is embedded in resulting JSON.- Specified by:
getTypeInclusionin classTypeSerializerBase
-
_validTypeId
Helper method used to ensure that intended type id is output as something that is valid: currently only used to ensure that `null` output is converted to an empty String. -
_writeTypeId
- Throws:
JacksonException
-