Class SimpleExportCollectionSerializer
- java.lang.Object
 - 
- com.fasterxml.jackson.databind.JsonSerializer<T>
 - 
- com.fasterxml.jackson.databind.ser.std.StdSerializer<Iterable<? extends CharSequence>>
 - 
- com.broadleafcommerce.common.dataexport.service.specification.custom.serializer.SimpleExportCollectionSerializer
 
 
 
 
- 
- All Implemented Interfaces:
 com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitable,com.fasterxml.jackson.databind.jsonschema.SchemaAware,Serializable
public class SimpleExportCollectionSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<Iterable<? extends CharSequence>>
Joins the elements of the provided
Iterableinto a single String containing the provided elements separated with a specified separator.- Author:
 - Dima Myroniuk (dmyroniuk)
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description SimpleExportCollectionSerializer()Construct the serializer with default "|" separator.SimpleExportCollectionSerializer(String separator)Construct the serializer with a specified separator. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidserialize(Iterable<? extends CharSequence> value, com.fasterxml.jackson.core.JsonGenerator gen, com.fasterxml.jackson.databind.SerializerProvider provider)- 
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 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
SimpleExportCollectionSerializer
public SimpleExportCollectionSerializer()
Construct the serializer with default "|" separator. 
- 
SimpleExportCollectionSerializer
public SimpleExportCollectionSerializer(String separator)
Construct the serializer with a specified separator.- Parameters:
 separator- the separator character to use, null treated as ""
 
 - 
 
- 
Method Detail
- 
serialize
public void serialize(Iterable<? extends CharSequence> value, com.fasterxml.jackson.core.JsonGenerator gen, com.fasterxml.jackson.databind.SerializerProvider provider) throws IOException
- Specified by:
 serializein classcom.fasterxml.jackson.databind.ser.std.StdSerializer<Iterable<? extends CharSequence>>- Throws:
 IOException
 
 - 
 
 -