Package com.beust.jcommander.converters
Class DefaultListConverter<T>
- java.lang.Object
-
- com.beust.jcommander.converters.DefaultListConverter<T>
-
- Type Parameters:
T
- the element type
- All Implemented Interfaces:
IStringConverter<List<T>>
public class DefaultListConverter<T> extends Object implements IStringConverter<List<T>>
A converter to obtain a list of elements.
-
-
Constructor Summary
Constructors Constructor Description DefaultListConverter(IParameterSplitter splitter, IStringConverter<T> converter)
Constructs a new converter.
-
-
-
Constructor Detail
-
DefaultListConverter
public DefaultListConverter(IParameterSplitter splitter, IStringConverter<T> converter)
Constructs a new converter.- Parameters:
splitter
- to split value into list of argumentsconverter
- to convert list of arguments to target element type
-
-