Class ListToString<S>

Type Parameters:
S - The element type.
All Implemented Interfaces:
Converter<List<S>,String>, Function<List<S>,String>
Direct Known Subclasses:
BooleanListToString, ByteListToString, DoubleListToString, FloatListToString, IntegerListToString, LongListToString, ShortListToString

public class ListToString<S> extends AbstractSequenceToString<List<S>>
Converter from a list of elements to a string.

It has the following form:
(prefix) element separator element separator ... element (suffix). where prefix and suffix are optional.

Author:
Damien Carbonne