Uses of Class
picocli.CommandLine.Help.TextTable
-
Packages that use CommandLine.Help.TextTable Package Description picocli Provides classes and interfaces for the main picocli command line parsing andautocompletionfunctionality. -
-
Uses of CommandLine.Help.TextTable in picocli
Fields in picocli declared as CommandLine.Help.TextTable Modifier and Type Field Description protected CommandLine.Help.TextTableCommandLine.Help.Layout. tableMethods in picocli that return CommandLine.Help.TextTable Modifier and Type Method Description CommandLine.Help.TextTableCommandLine.Help. createTextTable(Map<?,?> map)Returns a 2-columnTextTablecontaining 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.TextTableCommandLine.Help.TextTable. forColumns(CommandLine.Help.Ansi ansi, CommandLine.Help.Column... columns)Deprecated.static CommandLine.Help.TextTableCommandLine.Help.TextTable. forColumns(CommandLine.Help.ColorScheme colorScheme, CommandLine.Help.Column... columns)Constructs aTextTablewith the specified columns.static CommandLine.Help.TextTableCommandLine.Help.TextTable. forColumnWidths(CommandLine.Help.Ansi ansi, int... columnWidths)Deprecated.static CommandLine.Help.TextTableCommandLine.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.TextTableCommandLine.Help.TextTable. forDefaultColumns(CommandLine.Help.Ansi ansi, int usageHelpWidth)Deprecated.static CommandLine.Help.TextTableCommandLine.Help.TextTable. forDefaultColumns(CommandLine.Help.Ansi ansi, int longOptionsColumnWidth, int usageHelpWidth)Deprecated.static CommandLine.Help.TextTableCommandLine.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.TextTableCommandLine.Help.TextTable. setAdjustLineBreaksForWideCJKCharacters(boolean adjustLineBreaksForWideCJKCharacters)CommandLine.Help.TextTableCommandLine.Help.Layout. textTable()Returns the TextTable used in this layout.Constructors in picocli with parameters of type CommandLine.Help.TextTable Constructor Description Layout(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.
-