Class CustomerAttributesExportSerializer
- All Implemented Interfaces:
com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitable
,com.fasterxml.jackson.databind.jsonschema.SchemaAware
,Serializable
public class CustomerAttributesExportSerializer
extends com.fasterxml.jackson.databind.ser.std.StdSerializer<Map<String,Object>>
Joins the elements of the provided Map
into a single String containing the provided
elements separated with a specified separators.
- Author:
- Vitalii Voronkov (vvoronkov)
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonSerializer
com.fasterxml.jackson.databind.JsonSerializer.None
-
Field Summary
Fields inherited from class com.fasterxml.jackson.databind.ser.std.StdSerializer
_handledType
-
Constructor Summary
ConstructorDescriptionConstruct the serializer with default separators.CustomerAttributesExportSerializer
(String separator, String valueSeparator, String keyValueSeparator) Construct the serializer with a specified separators. -
Method Summary
Methods inherited from class com.fasterxml.jackson.databind.ser.std.StdSerializer
_neitherNull, _nonEmpty, acceptJsonFormatVisitor, createSchemaNode, createSchemaNode, findAnnotatedContentSerializer, findContextualConvertingSerializer, findConvertingContentSerializer, findFormatFeature, findFormatOverrides, findIncludeOverrides, findPropertyFilter, getSchema, getSchema, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrow
Methods inherited from class com.fasterxml.jackson.databind.JsonSerializer
getDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, serializeWithType, unwrappingSerializer, usesObjectId, withFilterId
-
Constructor Details
-
CustomerAttributesExportSerializer
public CustomerAttributesExportSerializer()Construct the serializer with default separators. -
CustomerAttributesExportSerializer
public CustomerAttributesExportSerializer(String separator, String valueSeparator, String keyValueSeparator) Construct the serializer with a specified separators.- Parameters:
separator
- the separator character to use, null treated as ""valueSeparator
- the separator character to use between collection valueskeyValueSeparator
- the separator character to use betweenMap
key-value
-
-
Method Details
-
serialize
public void serialize(Map<String, Object> value, com.fasterxml.jackson.core.JsonGenerator gen, com.fasterxml.jackson.databind.SerializerProvider provider) throws IOException- Specified by:
serialize
in classcom.fasterxml.jackson.databind.ser.std.StdSerializer<Map<String,
Object>> - Throws:
IOException
-