All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.beust.jcommander.converters.IParameterSplitter Maven / Gradle / Ivy

package com.beust.jcommander.converters;

import java.util.List;

/**
 * Convert a string representing several parameters (e.g. "a,b,c" or "d/e/f") into a
 * list of arguments ([a,b,c] and [d,e,f]).
 */
public interface IParameterSplitter {
  List split(String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy