blob: e833c2138c44776c31b0c6d4c800fc9583df03f7 (
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.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<String> split(String input);
}
|