public class CollectionSerializer extends ParameterizedTypeSerializer<java.util.Collection>
Collection 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 |
|---|
CollectionSerializer()
Create a new serializer for
Collection type. |
| Modifier and Type | Method and Description |
|---|---|
java.util.Collection |
fromJson(java.util.Collection arg,
java.lang.String sval)
Parse the string JSON representation and assign it to the given argument.
|
java.util.Collection<?> |
initialize(java.lang.Class<? extends java.util.Collection> definitionType)
Create an initial (default) instance for this serializer.
|
com.fasterxml.jackson.databind.JsonNode |
toJson(java.util.Collection val)
Serialize the given instance to JSON.
|
getSafeParameter, setParametersbootstrap, fromJson, getSerializer, getSerializer, getType, newInstance, newRecord, readArray, readArray, readArray, readMap, resolveJavaType, toJsonArray, toJsonObjectpublic CollectionSerializer()
Collection type.public java.util.Collection<?> initialize(java.lang.Class<? extends java.util.Collection> definitionType)
throws java.lang.ReflectiveOperationException
Can be null for non-mutable instances.
initialize in class JavaTypeSerializer<java.util.Collection>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.InstantiationExceptionjava.lang.IllegalAccessExceptionjava.lang.ReflectiveOperationExceptionpublic java.util.Collection fromJson(java.util.Collection arg,
java.lang.String sval)
throws RequestArgumentError
fromJson in class JavaTypeSerializer<java.util.Collection>arg - The argument (obtained via initialize(java.lang.Class<? extends java.util.Collection>).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.Collection val)
toJson in class JavaTypeSerializer<java.util.Collection>val - The instance to serialize.