Uses of Class
picocli.CommandLine.Help.TextTable
Packages that use CommandLine.Help.TextTable
Package
Description
Provides classes and interfaces for the main picocli command line parsing and
autocompletion
functionality.-
Uses of CommandLine.Help.TextTable in picocli
Fields in picocli declared as CommandLine.Help.TextTableModifier and TypeFieldDescriptionprotected final CommandLine.Help.TextTable
CommandLine.Help.Layout.table
Methods in picocli that return CommandLine.Help.TextTableModifier and TypeMethodDescriptionCommandLine.Help.createTextTable
(Map<?, ?> map) Returns a 2-columnTextTable
containing data from the specified map: the keys are put in the left column and the map values are in the right column.static CommandLine.Help.TextTable
CommandLine.Help.TextTable.forColumns
(CommandLine.Help.Ansi ansi, CommandLine.Help.Column... columns) Deprecated.static CommandLine.Help.TextTable
CommandLine.Help.TextTable.forColumns
(CommandLine.Help.ColorScheme colorScheme, CommandLine.Help.Column... columns) Constructs aTextTable
with the specified columns.static CommandLine.Help.TextTable
CommandLine.Help.TextTable.forColumnWidths
(CommandLine.Help.Ansi ansi, int... columnWidths) Deprecated.static CommandLine.Help.TextTable
CommandLine.Help.TextTable.forColumnWidths
(CommandLine.Help.ColorScheme colorScheme, int... columnWidths) Constructs a new TextTable with columns with the specified width, all SPANning multiple columns on overflow except the last column which WRAPS to the next row.static CommandLine.Help.TextTable
CommandLine.Help.TextTable.forDefaultColumns
(CommandLine.Help.Ansi ansi, int usageHelpWidth) Deprecated.static CommandLine.Help.TextTable
CommandLine.Help.TextTable.forDefaultColumns
(CommandLine.Help.Ansi ansi, int longOptionsColumnWidth, int usageHelpWidth) Deprecated.static CommandLine.Help.TextTable
CommandLine.Help.TextTable.forDefaultColumns
(CommandLine.Help.ColorScheme colorScheme, int longOptionsColumnWidth, int usageHelpWidth) Constructs a TextTable with five columns as follows: required option/parameter marker (width: 2, indent: 0, TRUNCATE on overflow) short option name (width: 2, indent: 0, TRUNCATE on overflow) comma separator (width: 1, indent: 0, TRUNCATE on overflow) long option name(s) (width: 24, indent: 1, SPAN multiple columns on overflow) description line(s) (width: 51, indent: 1, WRAP to next row on overflow)CommandLine.Help.TextTable.setAdjustLineBreaksForWideCJKCharacters
(boolean adjustLineBreaksForWideCJKCharacters) CommandLine.Help.Layout.textTable()
Returns the TextTable used in this layout.Constructors in picocli with parameters of type CommandLine.Help.TextTableModifierConstructorDescriptionLayout
(CommandLine.Help.ColorScheme colorScheme, CommandLine.Help.TextTable textTable) Constructs a Layout with the specified color scheme, the specified TextTable, the default option renderer, and the default parameter renderer.Layout
(CommandLine.Help.ColorScheme colorScheme, CommandLine.Help.TextTable textTable, CommandLine.Help.IOptionRenderer optionRenderer, CommandLine.Help.IParameterRenderer parameterRenderer) Constructs a Layout with the specified color scheme, the specified TextTable, the specified option renderer and the specified parameter renderer.
forColumns(CommandLine.Help.ColorScheme, CommandLine.Help.Column...)
instead