package bjc.utils.parserutils.splitter; import bjc.funcdata.ListEx; /** * Split a string into a list of pieces. * * @author EVE * */ public interface TokenSplitter { /** * Split a string into a list of pieces. * * @param input * The string to split. * * @return The pieces of the string. */ public ListEx split(String input); }