blob: 5d510c182253dc7b8abc7d608ad6fdd0c0e50a71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package bjc.utils.parserutils.splitterv2;
import bjc.utils.funcdata.IList;
/**
* 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 IList<String> split(String input);
}
|