summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/parserutils/splitter/TokenSplitter.java
blob: ddb28a7a8498b036f33984d4062888137ae29492 (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.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);
}