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 Details

    • DefaultListConverter

      public DefaultListConverter(IParameterSplitter splitter, IStringConverter<T> converter)
      Constructs a new converter.
      Parameters:
      splitter - to split value into list of arguments
      converter - to convert list of arguments to target element type
  • Method Details