Option注释可用于定义选项名称,如果 不希望它与参数名称相同。

@Command
public String example(@Option(longNames = "arg") String arg1) {
	return "Hello " + arg1;
}