void |
CommandLine.Help.Layout.addAllOptions(List<CommandLine.Model.OptionSpec> options,
CommandLine.Help.IParamLabelRenderer paramLabelRenderer) |
|
void |
CommandLine.Help.Layout.addAllPositionalParameters(List<CommandLine.Model.PositionalParamSpec> params,
CommandLine.Help.IParamLabelRenderer paramLabelRenderer) |
|
void |
CommandLine.Help.Layout.addOption(CommandLine.Model.OptionSpec option,
CommandLine.Help.IParamLabelRenderer paramLabelRenderer) |
|
void |
CommandLine.Help.Layout.addOptions(List<CommandLine.Model.OptionSpec> options,
CommandLine.Help.IParamLabelRenderer paramLabelRenderer) |
|
void |
CommandLine.Help.Layout.addPositionalParameter(CommandLine.Model.PositionalParamSpec param,
CommandLine.Help.IParamLabelRenderer paramLabelRenderer) |
|
void |
CommandLine.Help.Layout.addPositionalParameters(List<CommandLine.Model.PositionalParamSpec> params,
CommandLine.Help.IParamLabelRenderer paramLabelRenderer) |
|
String |
CommandLine.Help.optionList(CommandLine.Help.Layout layout,
Comparator<CommandLine.Model.OptionSpec> optionSort,
CommandLine.Help.IParamLabelRenderer valueLabelRenderer) |
Sorts all Options with the specified comparator (if the comparator is non- null ),
then adds all non-hidden options to the
specified TextTable and returns the result of TextTable.toString().
|
String |
CommandLine.Help.optionListExcludingGroups(List<CommandLine.Model.OptionSpec> optionList,
CommandLine.Help.Layout layout,
Comparator<CommandLine.Model.OptionSpec> optionSort,
CommandLine.Help.IParamLabelRenderer valueLabelRenderer) |
Sorts all Options with the specified comparator (if the comparator is non- null ),
then adds the specified options to the
specified TextTable and returns the result of TextTable.toString().
|
String |
CommandLine.Help.parameterList(List<CommandLine.Model.PositionalParamSpec> positionalParams,
CommandLine.Help.Layout layout,
CommandLine.Help.IParamLabelRenderer paramLabelRenderer) |
Returns the rendered section of the usage help message that lists the specified parameters with their descriptions.
|
String |
CommandLine.Help.parameterList(CommandLine.Help.Layout layout,
CommandLine.Help.IParamLabelRenderer paramLabelRenderer) |
Returns the rendered section of the usage help message that lists all positional parameters in this command with their descriptions.
|
CommandLine.Help.Ansi.Text[][] |
CommandLine.Help.IOptionRenderer.render(CommandLine.Model.OptionSpec option,
CommandLine.Help.IParamLabelRenderer parameterLabelRenderer,
CommandLine.Help.ColorScheme scheme) |
Returns a text representation of the specified option and its parameter(s) if any.
|
CommandLine.Help.Ansi.Text[][] |
CommandLine.Help.IParameterRenderer.render(CommandLine.Model.PositionalParamSpec param,
CommandLine.Help.IParamLabelRenderer parameterLabelRenderer,
CommandLine.Help.ColorScheme scheme) |
Returns a text representation of the specified positional parameter.
|