* @param description The description of the option
* @param defaultDesc The description of the default value for the option
* @return This for chaining.
*/
public UICommandAbstract<CTX, ARG> addOption (String name, Class type, String description, String defaultDesc) {
this.options.put(name, new CommandOption(name, type, description, defaultDesc)); return this;
}