Class 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.
    Author:
    simon04
    • Constructor Detail

      • 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 Detail