Class MapSerializer
java.lang.Object
org.codehaus.jackson.map.JsonSerializer<Map<?,?>>
org.codehaus.jackson.map.ser.std.SerializerBase<Map<?,?>>
org.codehaus.jackson.map.ser.std.ContainerSerializerBase<Map<?,?>>
org.codehaus.jackson.map.ser.std.MapSerializer
- All Implemented Interfaces:
ResolvableSerializer, SchemaAware
- Direct Known Subclasses:
MapSerializer
public class MapSerializer
extends ContainerSerializerBase<Map<?,?>>
implements ResolvableSerializer
Standard serializer implementation for serializing {link java.util.Map} types.
Note: about the only configurable setting currently is ability to filter out entries with specified names.
-
Nested Class Summary
Nested classes/interfaces inherited from class JsonSerializer
JsonSerializer.None -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected PropertySerializerMapIf value type can not be statically determined, mapping from runtime value types to serializers are stored in this object.Set of entries to omit during serialization, if anyprotected JsonSerializer<Object> Key serializer to use, if it can be statically determinedprotected final JavaTypeDeclared type of keysprotected final BeanPropertyMap-valued property being serialized with this instanceprotected JsonSerializer<Object> Value serializer to use, if it can be statically determinedprotected final JavaTypeDeclared type of contained valuesprotected final booleanWhether static types should be used for serialization of values or not (if not, dynamic runtime type is used)protected final TypeSerializerType identifier serializer used for values, if any.protected static final JavaTypeFields inherited from class SerializerBase
_handledType -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedprotectedMapSerializer(HashSet<String> ignoredEntries, JavaType keyType, JavaType valueType, boolean valueTypeIsStatic, TypeSerializer vts, JsonSerializer<Object> keySerializer, JsonSerializer<Object> valueSerializer, BeanProperty property) -
Method Summary
Modifier and TypeMethodDescriptionprotected final JsonSerializer<Object> _findAndAddDynamic(PropertySerializerMap map, Class<?> type, SerializerProvider provider) protected final JsonSerializer<Object> _findAndAddDynamic(PropertySerializerMap map, JavaType type, SerializerProvider provider) static MapSerializerconstruct(String[] ignoredList, JavaType mapType, boolean staticValueType, TypeSerializer vts, BeanProperty property) Deprecated.As of 1.8; use the variant with more argumentsstatic MapSerializerconstruct(String[] ignoredList, JavaType mapType, boolean staticValueType, TypeSerializer vts, BeanProperty property, JsonSerializer<Object> keySerializer, JsonSerializer<Object> valueSerializer) getSchema(SerializerProvider provider, Type typeHint) Note: since Jackson 1.9, default implementation claims type is "string"voidresolve(SerializerProvider provider) Need to get callback to resolve value serializer, if static typing is used (either being forced, or because value type is final)voidserialize(Map<?, ?> value, JsonGenerator jgen, SerializerProvider provider) Method that can be called to ask implementation to serialize values of type this serializer handles.voidserializeFields(Map<?, ?> value, JsonGenerator jgen, SerializerProvider provider) Method called to serialize fields, when the value type is not statically known.protected voidserializeFieldsUsing(Map<?, ?> value, JsonGenerator jgen, SerializerProvider provider, JsonSerializer<Object> ser) Method called to serialize fields, when the value type is statically known, so that value serializer is passed and does not need to be fetched from provider.protected voidserializeTypedFields(Map<?, ?> value, JsonGenerator jgen, SerializerProvider provider) voidserializeWithType(Map<?, ?> value, JsonGenerator jgen, SerializerProvider provider, 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.Methods inherited from class ContainerSerializerBase
withValueTypeSerializerMethods inherited from class SerializerBase
createObjectNode, createSchemaNode, createSchemaNode, handledType, isDefaultSerializer, wrapAndThrow, wrapAndThrow, wrapAndThrow, wrapAndThrowMethods inherited from class JsonSerializer
isUnwrappingSerializer, unwrappingSerializer
-
Field Details
-
UNSPECIFIED_TYPE
-
_property
Map-valued property being serialized with this instance- Since:
- 1.7
-
_ignoredEntries
-
_valueTypeIsStatic
protected final boolean _valueTypeIsStaticWhether static types should be used for serialization of values or not (if not, dynamic runtime type is used) -
_keyType
-
_valueType
Declared type of contained values -
_keySerializer
Key serializer to use, if it can be statically determined- Since:
- 1.7
-
_valueSerializer
Value serializer to use, if it can be statically determined- Since:
- 1.5
-
_valueTypeSerializer
Type identifier serializer used for values, if any. -
_dynamicValueSerializers
If value type can not be statically determined, mapping from runtime value types to serializers are stored in this object.- Since:
- 1.8
-
-
Constructor Details
-
MapSerializer
protected MapSerializer() -
MapSerializer
protected MapSerializer(HashSet<String> ignoredEntries, JavaType keyType, JavaType valueType, boolean valueTypeIsStatic, TypeSerializer vts, JsonSerializer<Object> keySerializer, JsonSerializer<Object> valueSerializer, BeanProperty property)
-
-
Method Details
-
_withValueTypeSerializer
- Specified by:
_withValueTypeSerializerin classContainerSerializerBase<Map<?,?>>
-
construct
@Deprecated public static MapSerializer construct(String[] ignoredList, JavaType mapType, boolean staticValueType, TypeSerializer vts, BeanProperty property) Deprecated.As of 1.8; use the variant with more argumentsFactory method used to construct Map serializers.- Parameters:
ignoredList- Array of entry names that are to be filtered on serialization; null if nonemapType- Declared type information (needed for static typing)staticValueType- Whether static typing should be used for the Map (which includes its contents)vts- Type serializer to use for map entry values, if any
-
construct
public static MapSerializer construct(String[] ignoredList, JavaType mapType, boolean staticValueType, TypeSerializer vts, BeanProperty property, JsonSerializer<Object> keySerializer, JsonSerializer<Object> valueSerializer) -
serialize
public void serialize(Map<?, ?> value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonGenerationExceptionDescription copied from class:JsonSerializerMethod that can be called to ask implementation to serialize values of type this serializer handles.- Specified by:
serializein classSerializerBase<Map<?,?>> - Parameters:
value- Value to serialize; can not be null.jgen- Generator used to output resulting Json contentprovider- Provider that can be used to get serializers for serializing Objects value contains, if any.- Throws:
IOExceptionJsonGenerationException
-
serializeWithType
public void serializeWithType(Map<?, ?> value, JsonGenerator jgen, SerializerProvider provider, TypeSerializer typeSer) throws IOException, JsonGenerationExceptionDescription copied from class:JsonSerializerMethod 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 ignore serialization of type information, and just calls
JsonSerializer.serialize(T, JsonGenerator, SerializerProvider): serializers that can embed type information should override this to implement actual handling. Most common such handling is done by something like:// note: method to call depends on whether this type is serialized as JSON scalar, object or Array! typeSer.writeTypePrefixForScalar(value, jgen); serialize(value, jgen, provider); typeSer.writeTypeSuffixForScalar(value, jgen);
- Overrides:
serializeWithTypein classJsonSerializer<Map<?,?>> - Parameters:
value- Value to serialize; can not be null.jgen- Generator used to output resulting Json contentprovider- Provider that can be used to get serializers for serializing Objects value contains, if any.typeSer- Type serializer to use for including type information- Throws:
IOExceptionJsonGenerationException
-
serializeFields
public void serializeFields(Map<?, ?> value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonGenerationExceptionMethod called to serialize fields, when the value type is not statically known.- Throws:
IOExceptionJsonGenerationException
-
serializeFieldsUsing
protected void serializeFieldsUsing(Map<?, ?> value, JsonGenerator jgen, SerializerProvider provider, JsonSerializer<Object> ser) throws IOException, JsonGenerationExceptionMethod called to serialize fields, when the value type is statically known, so that value serializer is passed and does not need to be fetched from provider.- Throws:
IOExceptionJsonGenerationException
-
serializeTypedFields
protected void serializeTypedFields(Map<?, ?> value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonGenerationException- Throws:
IOExceptionJsonGenerationException
-
getSchema
Description copied from class:SerializerBaseNote: since Jackson 1.9, default implementation claims type is "string"- Specified by:
getSchemain interfaceSchemaAware- Overrides:
getSchemain classSerializerBase<Map<?,?>> - Parameters:
provider- The serializer provider.typeHint- A hint about the type.- Returns:
- Json-schema for this serializer.
-
resolve
Need to get callback to resolve value serializer, if static typing is used (either being forced, or because value type is final)- Specified by:
resolvein interfaceResolvableSerializer- Parameters:
provider- Provider that has constructed serializer this method is called on.- Throws:
JsonMappingException
-
_findAndAddDynamic
protected final JsonSerializer<Object> _findAndAddDynamic(PropertySerializerMap map, Class<?> type, SerializerProvider provider) throws JsonMappingException - Throws:
JsonMappingException
-
_findAndAddDynamic
protected final JsonSerializer<Object> _findAndAddDynamic(PropertySerializerMap map, JavaType type, SerializerProvider provider) throws JsonMappingException - Throws:
JsonMappingException
-