blob: f2d9c739890901a68ab64a16bb4b51563b5c38d4 (
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.splitter;
import bjc.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);
}
|