public class MapSerializer extends ParameterizedTypeSerializer<java.util.Map>
Map instances.BIGDECIMAL_SERIALIZER, BIGINTEGER_SERIALIZER, BOOLEAN_SERIALIZER, BYTEARRAY_SERIALIZER, DOUBLE_SERIALIZER, FLOAT_SERIALIZER, INTEGER_SERIALIZER, LONG_SERIALIZER, mapper, SHORT_SERIALIZER, STRING_SERIALIZER| Constructor and Description |
|---|
MapSerializer()
Create a new serializer for
Map type. |
| Modifier and Type | Method and Description |
|---|---|
java.util.Map |
fromJson(java.util.Map arg,
java.lang.String sval)
Parse the string JSON representation and assign it to the given argument.
|
java.util.Map |
initialize(java.lang.Class<? extends java.util.Map> definitionType)
Create an initial (default) instance for this serializer.
|
com.fasterxml.jackson.databind.JsonNode |
toJson(java.util.Map val)
Serialize the given instance to JSON.
|
getSafeParameter, setParametersbootstrap, fromJson, getSerializer, getSerializer, getType, newInstance, newRecord, readArray, readArray, readArray, readMap, resolveJavaType, toJsonArray, toJsonObjectpublic java.util.Map initialize(java.lang.Class<? extends java.util.Map> definitionType)
throws java.lang.ReflectiveOperationException
Can be null for non-mutable instances.
initialize in class JavaTypeSerializer<java.util.Map>definitionType - The type as it appears at the parameter's definition.null for immutable types, a Java native value for native types or a new instance,
for mutable types.java.lang.ReflectiveOperationExceptionjava.lang.InstantiationExceptionjava.lang.IllegalAccessExceptionpublic java.util.Map fromJson(java.util.Map arg,
java.lang.String sval)
throws RequestArgumentError
fromJson in class JavaTypeSerializer<java.util.Map>arg - The argument (obtained via initialize(java.lang.Class<? extends java.util.Map>).sval - The string JSON representation of this argument.RequestArgumentError - If the argument can't be parsed.public com.fasterxml.jackson.databind.JsonNode toJson(java.util.Map val)
toJson in class JavaTypeSerializer<java.util.Map>val - The instance to serialize.