summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/cli/ICommandHandler.java
blob: 33182b38c6d3b6e71e0d168480b2266f3836f7d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package bjc.utils.cli;

import java.util.function.Function;

/**
 * A handler for a command
 * 
 * @author ben
 *
 */
@FunctionalInterface
public interface ICommandHandler extends Function<String[], ICommandMode> {
	/**
	 * Execute this command
	 * 
	 * @param args
	 *            The arguments for this command
	 * @return The command mode to switch to after this command, or null to
	 *         stop executing commands
	 */
	public default ICommandMode handle(String[] args) {
		return this.apply(args);
	}
}