com.beust.jcommander.converters.IParameterSplitter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.portal.tools.rest.builder
Show all versions of com.liferay.portal.tools.rest.builder
Liferay Portal Tools REST Builder
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);
}