1 package com.beust.jcommander.converters; 2 3 import java.util.List; 4 5 /** 6 * Convert a string representing several parameters (e.g. "a,b,c" or "d/e/f") into a 7 * list of arguments ([a,b,c] and [d,e,f]). 8 */ 9 public interface IParameterSplitter { split(String value)10 List<String> split(String value); 11 } 12